报错:
git pull error: cannot pull with rebase: You have unstaged changes. error: please commit or stash them.
解决方法:
git stash
git pull --rebase
git stash pop # 恢复暂存的更改
报错:
git pull error: cannot pull with rebase: You have unstaged changes. error: please commit or stash them.
git stash
git pull --rebase
git stash pop # 恢复暂存的更改