标签: git git-checkout
stdin
答案 0 :(得分:2)
2个选项:
git stash将更改应用到存储中,以后可以使用git stash apply或
git stash
git stash apply
git checkout -b wip-branch && git add . && git commit -m "wip" && git checkout <current_branch>