This repository has been archived by the owner on Jul 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
gitconfig
47 lines (47 loc) · 1.41 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
[user]
name = Michael Wall
email = [email protected]
[alias]
st = status -sb
ci = commit
br = branch
co = checkout
di = diff
lol = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%aN>%Creset'
lola = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%aN>%Creset' --all
# lg = log -p
# lol = log --graph --decorate --pretty='format:%C(auto)%h (%s) "%an" - %ai'
# lola = log --graph --decorate --pretty='format:%C(auto)%h (%s) "%an" - %ai' --all
# lol = log --graph --decorate --pretty=oneline --abbrev-commit
# lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
# lc = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --
ls = ls-files
distclean = clean -dxf
lf = log --follow
[pager]
color = true
[color]
ui = true
diff = auto
status = auto
branch = auto
[pull]
default = tracking
[push]
default = tracking
[core]
excludesfile = /Users/mjwall/.gitignore_global
#editor = subl -w
editor = emacs -nw
[credential]
helper = cache --timeout=3600
#[merge]
# tool = smerge
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
#[mergetool "smerge"]
# cmd = smerge mergetool \"$BASE\" \"$LOCAL\" \"$REMOTE\" -o \"$MERGED\"
# trustExitCode = true