19 lines
612 B
Plaintext
19 lines
612 B
Plaintext
[user]
|
|
name = "jon"
|
|
email = "jon@f01"
|
|
[credential]
|
|
helper = cache
|
|
[alias]
|
|
co = checkout
|
|
br = branch
|
|
ci = commit
|
|
st = status
|
|
cm = commit -m
|
|
l = log --oneline
|
|
|
|
unstage = reset HEAD --
|
|
undo = reset --soft HEAD^
|
|
sl = stash list --pretty=format:\"%C(red)%h%C(reset) - %C(dim yellow)(%C(bold magenta)%gd%C(dim yellow))%C(reset) %<(70,trunc)%s %C(gree n)(%cr) %C(bold blue)<%an>%C(reset)\"
|
|
discard = !git stash save --keep-index --include-untracked && git stash drop
|
|
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
|