집 > Q&A > 본문
我经常做这个操作:
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
漂亮男人2017-05-02 09:21:00
이런 것 말이죠.
git up을 실행하면 이 세 가지 명령이 실행됩니다.
git up