我经常做这个操作:
bash$ git add --update $ git status --short
bash
$ git add --update $ git status --short
于是,在.gitconfig里加入了
ini[alias] au = add --update ss = status --short
ini
[alias] au = add --update ss = status --short
但是,这样还是需要输入
bash$ git au; git ss
$ git au; git ss
怎样才能把这两条指令简化成$ git au?
$ git au
注:.bashrc的方法不算数。
.bashrc
Similar to this.
git config --global alias.up '!git remote update -p; git merge --ff-only @{u}'
Executegit up, those three commands will be executed.
git up
Similar to this.
Execute
git up
, those three commands will be executed.