有时,在使用Visual Studio Code进行代码更改之前,我忘记更改分支。我尝试在进行更改后更改分支,但收到类似“ Git:对以下文件的本地更改将被签出覆盖”的响应。如何将更改提交到需要使用的分支?
git stash git checkoutgit stash apply
这将提取您在原始分支上所做的更改,并将其放入您创建的新分支中。该-b
标志将立即将您切换到新分支。
编辑:如下所述,git stash/apply
在创建新分支(使用git checkout -b
)时没有必要。但是,如果您尝试不隐藏而签出现有分支,则会收到以下消息:
error: Your local changes to the following files would be overwritten by checkout: README.md Please, commit your changes or stash them before you can switch branches. Aborting
存放和应用时请小心,因为如果目标分支中存在类似的编辑,则可能会导致合并冲突。