📜  撤消 git stash 冲突 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:40.832000             🧑  作者: Mango

代码示例1
git reset HEAD . (note the trailing dot)
git stash (save the conflicted merge, just in case)
git checkout develop
git fetch upstream; git merge upstream/develop
git checkout ; git rebase develop
git stash apply stash@{1}