-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
34 lines (31 loc) · 1.05 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
[user]
name = Andrey Prokopyuk
email = [email protected]
[core]
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol,space-before-tab
[alias]
st = status
br = branch
co = checkout
di = diff
dc = diff --cached
ds = diff --staged
ci = commit
am = commit --amend
amend = commit --amend -C HEAD
undo = reset --soft HEAD^
cp = cherry-pick
lg = log -p
rb = rebase
lod = log --graph --decorate --format='%C(yellow)%h %Cblue%d %Cred%ad %Creset%s' --date=short
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
hist = log --pretty=format:'%C(yellow)%h%C(reset) %ad | %C(75)%s%C(reset) %C(yellow)%d%C(reset) [%an]' --graph --date=short --branches --all
# Show files ignored by git:
ign = ls-files -o -i --exclude-standard
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge --skip %f
process = git-lfs filter-process --skip
required = true
locksverify = false