検索

ホームページ  >  に質問  >  本文

.gitconfig里,怎么让一个别名对应两条指令?

我经常做这个操作:

bash$ git add --update
$ git status --short

于是,在.gitconfig里加入了

ini[alias]
    au = add --update
    ss = status --short

但是,这样还是需要输入

bash$ git au; git ss

怎样才能把这两条指令简化成$ git au

注:.bashrc的方法不算数。

漂亮男人漂亮男人2770日前628

全員に返信(1)返信します

  • 漂亮男人

    漂亮男人2017-05-02 09:21:00

    これと同じです。

    リーリー

    Executegit up、これら 3 つのコマンドが実行されます。

    返事
    0
  • キャンセル返事