-
Notifications
You must be signed in to change notification settings - Fork 0
/
.custom_gitconfig
48 lines (48 loc) · 1.36 KB
/
.custom_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
# This is Git's per-user configuration file.
[push]
recurseSubmodules = on-demand
[alias]
st = status
di = diff
co = checkout
ci = commit --verbose
br = branch
sta = stash
llog = log --date=local
flog = log --pretty=fuller --decorate
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
lol = log --graph --decorate --oneline
lola = log --graph --decorate --oneline --all
blog = log origin/master... --left-right
ds = diff --staged
fixup = commit --fixup
squash = commit --squash
unstage = reset HEAD
rum = rebase master@{u}
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
push-broker-release = !git -C /Users/pivotal/workspace/redis-on-demand-broker-release push --recurse-submodules=on-demand
forget = rm --cached
wewrotethat = duet-commit --amend --reset-author --verbose
pullsubs = submodule update --init --recursive
[color]
branch = auto
diff = auto
interactive = auto
status = auto
ui = auto
[merge]
conflictstyle = diff3
[pull]
rebase = true
[push]
default = current
[commit]
verbose = true
[user]
# Please adapt and uncomment the following lines:
name = henderjm
email = [email protected]
[url "[email protected]:"]
insteadOf = https://github.com/
[http "https://gopkg.in"]
followRedirects = true