我如何在 MacOSX 上的一个命令中做到这一点?
git stash
git pull origin master
git stash pop
我已经尝试过git stash && git pull origin mater && git stash apply
并且工作正常。
我如何在 MacOSX 上的一个命令中做到这一点?
git stash
git pull origin master
git stash pop
我已经尝试过git stash && git pull origin mater && git stash apply
并且工作正常。
使用git 别名。例如
[alias]
spullsa = "!git stash && git pull origin mater && git stash apply"
如果你想要比设置 git 别名更“官方”的东西,你可能会对http://www.git-legit.org/感兴趣。你在做什么类似于“git sync”。