いくつかの 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.
何か案は?