-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
30 lines (30 loc) · 819 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
[credential]
[user]
email = 31107829+calebmshafer@users.noreply.github.com
name = Caleb Shafer
[core]
editor = vim
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[alias]
ci = commit
st = status
br = branch
co = checkout
bdiff = difftool --dir-diff
clearRemovedRemotes = branch -vv | cut -c 3- | awk \"$4 ~/gone\\]/ { print $1 }\"
change-commits = "!f() { VAR=$1; OLD=$2; NEW=$3; shift 3; git filter-branch --env-filter \"if [[ \\\"$`echo $VAR`\\\" = '$OLD' ]]; then export $VAR='$NEW'; fi\" $@; }; f "
[difftool "sourcetree"]
cmd = '' \"$LOCAL\" \"$REMOTE\"
[mergetool "sourcetree"]
cmd = "'' "
trustExitCode = true
[credential]
helper = manager
[color "status"]
changed = red bold
untracked = cyan bold
added = green bold