-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
33 lines (30 loc) · 887 Bytes
/
.gitconfig
File metadata and controls
33 lines (30 loc) · 887 Bytes
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
[core]
editor = emacs -nw
excludesfile = /home/dhecht/.gitignore
[user]
name = Dan Hecht
email = dhecht@cloudera.com
[difftool "ediff"]
cmd = emacs --eval \"(ediff-files \\\"$LOCAL\\\" \\\"$REMOTE\\\")\"
[difftool "ediffclient"]
cmd = emacsclient --eval \"(ediff-files \\\"$LOCAL\\\" \\\"$REMOTE\\\")\"
#[diff]
# tool = ediff
# guitool = ediff
#
#[difftool "ediff"]
# cmd = ~/bin/ediff.sh $LOCAL $REMOTE $MERGED
#
#[merge]
# tool = ediff
#
#[mergetool "ediff"]
# cmd = ~/bin/ediff.sh $LOCAL $REMOTE $MERGED $BASE
# trustExitCode = true
[alias]
ediff = difftool --tool=ediff
l = log --graph --pretty=format:'%C(yellow)%h%Creset%C(blue)%d%Creset %C(white bold)%s%Creset %C(white dim)(by %an %ar)%Creset'
ll = !git l --all
tree = log --graph --simplify-by-decoration --pretty=format:'%d' --all
[color]
ui = true