-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
29 lines (29 loc) · 736 Bytes
/
Copy pathgitconfig
File metadata and controls
29 lines (29 loc) · 736 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
[alias]
start = "!f() { git checkout -b $1 origin/master ; }; f"
s = "status"
amend = commit -a --amend
changes = "!git log --pretty=oneline $(git rev-parse --abbrev-ref HEAD@{upstream}).."
sn = "!f() { git show HEAD~$1 ; }; f"
cp = "cherry-pick"
cpc = "cherry-pick --continue"
cpa = "cherry-pick --abort"
rbi = "!git rebase --autosquash -i $(git rev-parse --abbrev-ref HEAD@{upstream})"
rbc = "rebase --continue"
rba = "rebase --abort"
drop = "reset --hard HEAD^"
[user]
name = David Gilhooley
email = dgilhooley@google.com
[color]
ui = auto
[core]
editor = vim
autocrlf = input
[push]
default = simple
[color]
ui = true
[github]
user = gilhooleyd
[http]
cookiefile = /usr/local/google/home/dgilhooley/.gitcookies