# 取消最新的提交窄瘟,然后保留現(xiàn)場原狀
git reset HEAD~ --soft
git stash
# 切換到正確的分支
git checkout name-of-the-correct-branch
git stash pop
git add . # 或添加特定文件
git commit -m "你的提交說明"
# 取消最新的提交窄瘟,然后保留現(xiàn)場原狀
git reset HEAD~ --soft
git stash
# 切換到正確的分支
git checkout name-of-the-correct-branch
git stash pop
git add . # 或添加特定文件
git commit -m "你的提交說明"