-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
91 lines (89 loc) · 2.37 KB
/
.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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[merge]
summary = true
tool = vimdiff
[diff]
renames = true
[i18n]
logoutputencoding = UTF-8
[rerere]
enabled = true
[format]
numbered = true
[status]
submodulesummary = -1
[color]
branch = true
diff = true
interactive = true
status = true
showbranch = true
ui = 1
grep = true
[core]
editor = vim
pager = less -JFRSX
excludesfile = ~/.gitignore_global
quotePath = false
[color "branch"]
current = green
local = yellow
remote = red
[color "diff"]
meta = yellow
[color "grep"]
match = green
[color "status"]
changed = yellow
[alias]
b = branch
ba = branch -a -v -v
c = commit -S -m "$1"
co = checkout
d = diff -C
ds = diff -C --stat
dsp = diff -C --stat -p
dw = diff -C --color-words
l = log -C --decorate
ls = log -C --stat --decorate
lsp = log -C --stat -p --decorate
lg = log --graph '--pretty=tformat:%Cblue%h%Creset %Cgreen%ar%Creset %Cblue%d%Creset %s'
lga = log --graph '--pretty=tformat:%Cblue%h%Creset %Cgreen%ar%Creset %Cblue%d%Creset %s' --all
l19 = log --graph '--pretty=tformat:%Cblue%h%Creset %Cgreen%ar%Creset %Cblue%d%Creset %s' --all -19
lsd = log --graph '--pretty=tformat:%Cblue%h%Creset %Cgreen%ar%Creset %Cblue%d%Creset %s' --all --simplify-by-decoration
ru = remote update
sb = show-branch --sha1-name
ls-del = ls-files -d
ls-mod = ls-files -m
ls-new = ls-files --exclude-standard -o
ls-ign = ls-files --exclude-standard -o -i
clog = log --date=short --pretty=format:\"%Cred%ad %Cblue%h %Cgreen%an %Creset%s%C(yellow)%d\"
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --
s = status -sb
wipe = reset --hard
unstage = reset HEAD --
amend = commit --amend -C HEAD
today = !git log --since=midnight --author=\"$(git config user.name)\" --oneline
update-submodules = submodule update --remote --recursive
aliases = !git config --list | grep 'alias\\.' | sed 's/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\ \t => \\2/' | sort
[user]
name = Lex Rivera
email = [email protected]
signingkey = E7ED7B6B453AF56C
[push]
default = current
followTags = true
[help]
autocorrect = 1
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[commit]
gpgSign = true
[submodule]
recurse = true
[pull]
rebase = true
[init]
defaultBranch = master