-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
43 lines (43 loc) · 1.2 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
[user]
name = lpmatos
email = [email protected]
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[credential]
helper = store
[core]
editor = vim
[alias]
co = checkout
c = commit
cm = commit -m
cam = commit -am
aa = add -A .
br = branch
st = status
unstage = reset HEAD
last = log -1 HEAD
graph = log --oneline --graph --color --all --decorate
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
lg = log --color --graph --pretty=format:'%C(cyan)%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[color]
status = always
[includeIf "gitdir:~/work/stefanini"]
path = ~/work/stefanini/.gitconfig
[includeIf "gitdir:~/work/stfcia"]
path = ~/work/stfcia/.gitconfig
[url "ssh://[email protected]/"]
insteadOf = https://github.com/
[url "ssh://[email protected]/"]
insteadOf = https://gitlab.com/
[url "ssh://[email protected]/"]
insteadOf = https://git.stefanini.io/
[url "ssh://[email protected]/"]
insteadOf = https://git.stfcia.com.br/
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f