-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
53 lines (44 loc) · 1.21 KB
/
.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
[user]
name = Stefan Chrobot
email = [email protected]
[push]
default = simple
[alias]
fetchx = fetch --tags
commitx = !git add -A && git commit -m
fixup = commit --fixup
amend = commit --amend
amendx = commit --amend --no-edit
mergex = merge --no-ff
pullm = !git checkout master && git pull && git checkout -
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lolm = log --graph --decorate --pretty=oneline --abbrev-commit master..
lold = log --graph --decorate --pretty=oneline --abbrev-commit develop..
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
freshm = !git checkout master && git pull
freshc = !git checkout master && git pull && git checkout - && git merge master
[color]
ui = auto
branch = auto
diff = auto
interactive = auto
status = auto
[merge]
keepBackup = false
guitool = p4merge
[mergetool]
prompt = false
[mergetool "p4merge"]
cmd = p4merge "$BASE" "$LOCAL" "$REMOTE" "$MERGED"
keepTemporaries = false
trustExitCode = false
keepBackup = false
[diff]
guitool = p4merge
[difftool]
prompt = false
[difftool "p4merge"]
cmd = p4merge "$LOCAL" "$REMOTE"
keepTemporaries = false
trustExitCode = false
keepBackup = false