“git拉”能自动保存和弹出挂起的更改吗?我知道如何解决这个问题:user@host$ git pull
Updating 9386059..6e3ffde
error: Your local changes to the following files would be overwritten by merge:
foo.bar
Please, commit your changes or stash them before you can merge.
Aborting但难道没有办法让git pull做stash和pop为我跳舞?如果此命令有不同的名称,则可以。为git stash; git pull; git stash pop是一个解决方案,但我想找一个更好的解决方案。
3 回答
交互式爱情
TA贡献1712条经验 获得超3个赞
git pull
git fetch git rebase --autostash FETCH_HEAD
git config alias.pullr '!git fetch; git rebase --autostash FETCH_HEAD'
git pullr
- 3 回答
- 0 关注
- 737 浏览
添加回答
举报
0/150
提交
取消