-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_gitconfig
57 lines (57 loc) · 1.26 KB
/
dot_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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[user]
email = [email protected]
name = joerger
[core]
editor = vim
pager = diff-so-fancy | less --tabs=4 -RFX
[alias]
please = push --force-with-lease
ga = git add
gaa = git add .
gaaa = git add --all
gau = git add --update
gb = git branch
gbd = git branch --delete
gc = git commit
gcm = git commit --message
gcf = git commit --fixup
gco = git checkout
gcob = git checkout -b
gcom = git checkout master
gcos = git checkout staging
gcod = git checkout develop
gd = git diff
gda = git diff HEAD
glg = git log --graph --oneline --decorate --all
gld = git log --pretty=format:"%h %ad %s" --date=short --all
gm = git merge --no-ff
gma = git merge --abort
gmc = git merge --continue
gp = git pull
gpr = git pull --rebase
gr = git rebase
gs = git status
gss = git status --short
gst = git stash
gsta = git stash apply
gstd = git stash drop
gstl = git stash list
gstp = git stash pop
gsts = git stash save
[interactive]
diffFilter = diff-so-fancy --patch
[color]
ui = true
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
meta = 11
frag = magenta bold
func = 146 bold
commit = yellow bold
old = red bold
new = green bold
whitespace = red reverse