我尝试添加一些 bang 别名(比如...!git stash pop)。但那些不起作用。
[alias]
pop = !git stash pop
不幸的是,这不起作用(请忽略我可以在没有爆炸的情况下使用它的事实 - 我需要一个命令来测试它。我的别名更复杂)。
$ git pop
fatal: 'stash' appears to be a git command, but we were not
able to execute it. Maybe git-stash is broken?
它没有爆炸声
[alias]
pop = stash pop
正如预期的那样
$ git pop
No stash found.
有任何想法吗?