-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
30 lines (27 loc) · 714 Bytes
/
.gitconfig
File metadata and controls
30 lines (27 loc) · 714 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
30
[alias]
co = checkout
br = branch
st = status
cp = commit -a -m "minor"
wip = commit -a -m "wip"
pud = !git pull --rebase origin develop
pum = !git pull --rebase origin main
re = !git rebase -i $(git merge-base HEAD origin)
md = merge origin/develop
cr = !git push origin $(git rev-parse --abbrev-ref HEAD)
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
[color]
branch = auto
diff = auto
status = auto
[branch]
autosetupmerge = true
[core]
excludesfile = ~/.globalgitignore
[init]
templatedir = ~/.git_template
[push]
default = simple
[user]
email = spencer+github@3box.io
name = Spencer T Brody