-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
28 lines (28 loc) · 779 Bytes
/
gitconfig
File metadata and controls
28 lines (28 loc) · 779 Bytes
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
[user]
email = josemmazzei@gmail.com
name = José María
[alias]
cm = commit
br = branch
co = checkout
ca = commit -a
changelog = log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --date=relative --abbrev-commit --graph
df = diff
lg = log -p
pushom = push origin master
pullom = pull origin master
pullupm = pull upstream master
ui = update-index --again
logd = log --pretty=format:'%C(yellow)%h | %Cred%ad | %Cblue%an%Cgreen%d | %Creset%s' --date=human
logo = log --graph --decorate --oneline --abbrev-commit --all
ls = ls-files
st = status --short
wip = !git commit -am wip
[commit]
template = ~/.gitmessage
[rerere]
enabled = true
[pull]
rebase = false
[init]
defaultBranch = main