Fix git aliases
This commit is contained in:
parent
098a0263b0
commit
3f73e16df0
1 changed files with 8 additions and 8 deletions
|
@ -100,17 +100,17 @@ in
|
||||||
aliases = {
|
aliases = {
|
||||||
a = "add -A";
|
a = "add -A";
|
||||||
ac = "commit -a";
|
ac = "commit -a";
|
||||||
b = "rev-parse - -symbolic-full-name HEAD";
|
b = "rev-parse --symbolic-full-name HEAD";
|
||||||
c = "commit";
|
c = "commit";
|
||||||
cm = "commit - m";
|
cm = "commit -m";
|
||||||
cnv = "commit - -no-verify";
|
cnv = "commit --no-verify";
|
||||||
co = "checkoutd";
|
co = "checkout";
|
||||||
d = "diff";
|
d = "diff";
|
||||||
ds = "diff - -staged";
|
ds = "diff --staged";
|
||||||
dt = "difftool ";
|
dt = "difftool";
|
||||||
f = "fetch";
|
f = "fetch";
|
||||||
l = "log - -graph - -abbrev-commit - -decorate - -oneline - -all";
|
l = "log --graph --abbrev-commit --decorate --oneline --all";
|
||||||
plainlog = " log - -pretty=format:'%h %ad%x09%an%x09%s' --date=short --decorate";
|
plainlog = " log --pretty=format:'%h %ad%x09%an%x09%s' --date=short --decorate";
|
||||||
ls = "ls-files";
|
ls = "ls-files";
|
||||||
mm = "merge master";
|
mm = "merge master";
|
||||||
p = "push";
|
p = "push";
|
||||||
|
|
Loading…
Reference in a new issue