-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgitconfig
34 lines (34 loc) · 863 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
31
32
33
34
[user]
email = travis.dempsey@jumpcloud.com
name = Travis Dempsey
[color]
ui = true
[github]
user = tdempseyjc
[alias]
la = log --stat --graph
st = status
ci = commit
co = checkout
br = branch
df = diff
sm = submodule
pq = pull-request -c --no-edit
alias = "!f() { git config --global -- alias.\"$@\"; }; f"
aliases = !git config -l | sed -ne 's/^alias\\.//p'
amend = commit --amend -C HEAD
au = "!f() { git add -u ${@-:/}; }; f"
b = branch
fp = format-patch
last = log -1 HEAD
ll = log --date=short --pretty=format:%C(yellow)%h\\ %ad\\ %Cred%d\\ %Creset%s%Cblue\\ [%aN]
new = log HEAD@{1}..HEAD@{0}
pick = cherry-pick
sub = submodule update --init --recursive
unstage = reset HEAD --
[credential]
helper = osxkeychain
[tag]
sort = version:refname
[url "ssh://git@github.com/"]
insteadOf = https://github.com/