-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
36 lines (31 loc) · 1.22 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
[user]
name = Agustin Borgna
email = agustinborgna@gmail.com
signingkey = EA62514FA56C940A
[push]
default = simple
[alias]
c = commit
ca = commit --amend
co = checkout
p = push
pf = push --force-with-lease
r = rebase -i
f = fetch --prune
fa = fetch --prune --all
t = !"git tree --all"
tt = !"git tree-extended --all"
ttt = !"git tree-full --all"
ts = !"git tree"
tts = !"git tree-extended"
ttts = !"git tree-full"
tree = log --graph --decorate --oneline --color
tree-extended = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(bold red)%d%C(reset)%n'' %C(white)%s%C(reset) %C(yellow)- %an <%ae> %C(reset)'
tree-full = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset) %C(bold cyan)(committed: %cD)%C(reset) %C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset)%n'' %C(dim white)- %an <%ae> %C(reset) %C(dim white)(committer: %cn <%ce>)%C(reset)'
[pull]
ff = only
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f