forked from adkron/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgitconfig.symlink
75 lines (70 loc) · 2.85 KB
/
gitconfig.symlink
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
[git-pair]
authors = Amos King <[email protected]>
authors = Nick Bimpasis <[email protected]>
authors = Helena Converse <[email protected]>
authors = Lori Cross <[email protected]>
authors = Lauren Buchler <[email protected]>
authors = Kevin Compton <[email protected]>
authors = Charlie Sanders <[email protected]>
authors = Victor Prechtel <[email protected]>
authors = Mario Aquino <[email protected]>
authors = Craig Buchek <[email protected]>
authors = David McCown <[email protected]>
authors = Matt Korwel <[email protected]>
authors = Kenny Ortmann <[email protected]>
[color]
ui = auto
interactive = auto
status = auto
commit = auto
diff = auto
branch = auto
[apply]
whitespace = strip
whitespace = nowarn
[alias]
addall = !git add . && git add -u && git st
amend = commit --amend --reset-author --reuse-message=HEAD
aliases = !git config --get-regexp 'alias.*' | colrm 1 6 | sed 's/[ ]/ = /' | sort
br = branch
ci = commit -v
clear = !git add . && git stash && git stash drop
co = checkout
cp = cherry-pick
di = diff
diff-stat = diff -b --stat
graph = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
history = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
ignore = !([ ! -e .gitignore ] && touch .gitignore) | echo $1 >>.gitignore
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
log-graph = log --all --graph --decorate
log-refs = log --all --graph --decorate --oneline --simplify-by-decoration --no-merges
log-timeline = log --format='%h %an %ar - %s'
log-local = log --oneline origin..HEAD
log-fetched = log --oneline HEAD..origin/master
merged = branch --merged
oneline = log --oneline
p = pair
patch = log -p --no-walk # Generate patch file from a commit.
pick = cherry-pick
prune = remote prune
prune-all = !git remote | xargs -n 1 git remote prune
search = log --pretty=short -S
st = status
staged = diff --staged
stat = status
svn-pull = !git svn fetch && git svn rebase
svn-push = !git svn dcommit
uncommit = reset --soft HEAD^
unmerge = reset --hard ORIG_HEAD
unmerged = branch --no-merged
unstage = reset HEAD --
wdiff = diff --word-diff-regex=[a-zA-Z_0-9]+
which-branches-contain = branch -a --contains
which-tags-contain = name-rev --name-only
wipe = !git reset --hard; git clean -fd
[http]
sslVerify = 0
[include]
path = .my_gitconfig