我试图创建一个别名,使用多个Git命令和位置参数。每个都有Stackoverflow页面,两者都做似乎很明显,但我遇到了麻烦。

例如,我想切换到分支foo并执行一个状态。所以在我的。gitconfig中,我有:

  [alias] 
     chs = !sh -c 'git checkout $0 && git status'

这是行不通的。而像这样的东西是可以工作的。

chs = !sh -c 'git checkout $0'

echoes = !sh -c 'echo hi && echo bye'

任何见解都将受到感激。


当前回答

[alias]
chs = !git branch && git status

其他回答

这将工作(用zsh和bash测试):

[alias] chs = !git checkout $1 && git status

你可以定义一个shell函数。

[alias] chs = "!f(){ git checkout \"$1\" && git status; };f"

这个目标是Windows批处理/ msysgit bash;可能在其他环境中不起作用。

Olivier Verdier和Lily Ballard说过

[别名]chs =

几乎工作,但给出了一个虚假的额外插入参数…

Git CHS演示-> Git checkout演示&& Git状态演示

但是如果您在别名的末尾添加&&:,则伪参数将被消耗到位置标记中。

So

[alias] chs = !git checkout $1 && git status && :

给出正确的输出… Git CHS演示-> Git checkout演示&& Git状态

可以通过在每行末尾附加\来获得多行git别名。

[alias] 
   chs = "!git checkout $1 \ 
          ; git status     \
         "

我能够创建多行和相当复杂的git别名。它们在Windows上工作得很好,但我认为它们在其他地方也能工作,例如:

safereset = "!f() { \
                trap 'echo ERROR: Operation failed; return' ERR; \
                echo Making sure there are no changes...; \
                last_status=$(git status --porcelain);\
                if [[ $last_status != \"\" ]]; then\
                    echo There are dirty files:;\
                    echo \"$last_status\";\
                    echo;\
                    echo -n \"Enter Y if you would like to DISCARD these changes or W to commit them as WIP: \";\
                    read dirty_operation;\
                    if [ \"$dirty_operation\" == \"Y\" ]; then \
                        echo Resetting...;\
                        git reset --hard;\
                    elif [ \"$dirty_operation\" == \"W\" ]; then\
                        echo Comitting WIP...;\
                        git commit -a --message='WIP' > /dev/null && echo WIP Comitted;\
                    else\
                        echo Operation cancelled;\
                        exit 1;\
                    fi;\
                fi;\
            }; \
            f"

我写了一篇文章,这里有更多的例子。