zsh: slight alias modification
This commit is contained in:
parent
6c036f9d2e
commit
9a0f7fddec
1 changed files with 7 additions and 3 deletions
10
.gitconfig
10
.gitconfig
|
@ -1,24 +1,28 @@
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = trunk
|
defaultBranch = trunk
|
||||||
|
|
||||||
[credential]
|
[credential]
|
||||||
helper = store
|
helper = store
|
||||||
|
|
||||||
[pull]
|
[pull]
|
||||||
rebase = false
|
rebase = false
|
||||||
|
|
||||||
[user]
|
[user]
|
||||||
email = blakelysnorth@gmail.com
|
email = blakelysnorth@gmail.com
|
||||||
name = PowerUser64
|
name = PowerUser64
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
tree = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
|
tree = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
|
||||||
lg = tree
|
lg = tree
|
||||||
sub = submodule
|
sub = submodule
|
||||||
|
pl = pull
|
||||||
|
ps = push
|
||||||
s = status
|
s = status
|
||||||
p = pull
|
|
||||||
pu = push
|
|
||||||
a = add
|
a = add
|
||||||
c = commit
|
c = commit
|
||||||
ca = commit -a
|
ca = commit -a
|
||||||
cam = commit --amend
|
cam = commit --amend
|
||||||
caam = commit -a --amend
|
caam = commit -a --amend
|
||||||
dh = diff HEAD
|
d = diff
|
||||||
|
|
||||||
# vim:noet
|
# vim:noet
|
||||||
|
|
Loading…
Add table
Reference in a new issue