-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitconfig
35 lines (35 loc) · 904 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
34
35
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
amend = commit --amend --no-edit
please = push --force-with-lease
it = !git init && git commit -m “root” --allow-empty
shorty = status --short --branch
st = status --short --branch
[color]
branch = auto
diff = auto
interactive = auto
status = auto
ui = true
[core]
excludesfile = /home/mlopes/.gitignore_global
[diff]
mnemonicprefix = true
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
trustExitCode = true
[mergetool "kdiff3"]
trustExitCode = false
[merge]
tool = extMerge
[mergetool "extMerge"]
cmd = /usr/local/bin/extMerge \"$BASE\" \"$LOCAL\" \"$REMOTE\" -o \"$MERGED\"
[achievement]
upload = true
[push]
default = simple
[include]
path = .github
path = .gituser