-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
29 lines (29 loc) · 722 Bytes
/
gitconfig
File metadata and controls
29 lines (29 loc) · 722 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
[user]
name = Joe Judge
email = joe@intrusion.org, judge@mitre.org, joseph.judge.ctr@us.af.mil
[core]
excludesfile = /Users/judge/.gitignore_global
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[push]
default = simple
[color]
ui = True
[http]
postbuffer = 524288000
[alias]
remotes = remote -v
branches = branch -a
tags = tag -l
currentbranch = rev-parse --abbrev-ref HEAD
id = rev-parse --short HEAD
lg = log --color --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
st = status -sb
co = checkout
[merge]
tool = "DiffMerge"