forked from hashrocket/dotmatrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
117 lines (117 loc) · 2.44 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[alias]
aliases=!git config -l | grep '^alias' | cut -c 7- | sort
aa = add -A .
b = branch
st = status
cheddar = commit --amend -CHEAD
ci = commit
co = checkout
cp = cherry-pick
put = push origin HEAD
find = !sh -c 'git ls-files | grep --color=always -i "$@" | less -FRSX' -
fixup = commit --fixup
squash = commit --squash
doff = reset HEAD^
ri = rebase --interactive
br = branch
pruneremote = remote prune origin
tree = log --graph --oneline --decorate --color --all
tr = log --graph --oneline --decorate --color
add-untracked = !"git status --porcelain | awk '/\\?\\?/{ print $2 }' | xargs git add"
reset-authors = commit --amend --reset-author -CHEAD
rmbranch = "!f(){ git branch -d ${1} && git push origin --delete ${1}; };f"
snapshot = !git stash save "snapshot: $(date)" && git stash apply "stash@{0}"
history = log -p --
[github]
user = brandonshega
[user]
email = [email protected]
name = Brandon Shega
[color]
pager = true
ui = auto
status = auto
diff = auto
branch = auto
showBranch = auto
interactive = auto
grep = auto
[color "status"]
header = black bold
branch = cyan
nobranch = red
unmerged = red
untracked = cyan
added = green
changed = red bold
[color "diff"]
meta = red bold
frag = black bold
func = blue
old = red strike
new = green
commit = blue
whitespace = red
context = normal
[color "branch"]
current = cyan
local = blue
remote = magenta
upstream = magenta
plain = normal
[color "decorate"]
branch = blue
remoteBranch = magenta
tag = magenta
stash = cyan
HEAD = blue
[color "interactive"]
prompt = red
header = red bold
error = red
help = black bold
[color "grep"]
context = normal
match = cyan
filename = blue
function = blue
selected = normal
separator = red bold
linenumber = normal
[branch]
autosetuprebase = always
[color]
ui = auto
[core]
excludesfile = ~/.cvsignore
editor = vim
whitespace = warn
[help]
autocorrect = 10
[interactive]
singlekey = true
[merge]
summary = true
[merge "bundlelock"]
name = lock Gemfile
driver = bundle install
[merge "bundle"]
name = bundle
driver = bundle
[push]
default = tracking
[rebase]
autosquash = true
[diff]
algorithm = patience
[include]
path = ~/.gitconfig.local
[fetch]
prune = true
[github "git.moen.com/api/v3"]
user = bshega
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f