forked from FabriZZio/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
33 lines (30 loc) · 933 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 = Dieter Provoost
email = contact@dieterprovoost.be
[color]
ui = auto
[alias]
last = log --full-diff -1 --graph --summary HEAD
pom = push origin master
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
co = checkout
ci = commit
st = status
br = branch
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
type = cat-file -t
dump = cat-file -p
[core]
whitespace = trailing-space,space-before-tab,indent-with-non-tab
editor = nano
excludesfile = ~/.gitignore_global
# autocrlf = input
# safecrlf = true
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[push]
default = simple