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

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

代码示例2
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}