forked from nicholasjhenry/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
33 lines (33 loc) · 858 Bytes
/
gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[user]
name = Nicholas Henry
email = [email protected]
[alias]
co = checkout
l = log --graph --pretty=format':%C(yellow)%h%Cblue%d%Creset %s %C(white) %an, %ar%Creset'
pom = push origin master
phm = push heroku master
revert-last-commit = reset --soft HEAD^
unstage = reset HEAD
sm = smart-merge
sp = smart-pull
sl = smart-log
s = status
rbm = rebase master
ctags = !.git/hooks/ctags
[apply]
whitespace = nowarn
[color]
ui = auto
[branch "master"]
remote = origin
merge = refs/heads/master
# Rebase the branch master on top of the fetched branch, instead of merging the default branch from the default remote when "git pull" is run
rebase = true
[core]
quotepath = false
excludesfile = ~/.gitignore
[push]
# Push current branch even if you've never pushed it before
default = current
[init]
templatedir = ~/.git_template