标签: git
git checkout -b new_feature
new_feature
master
git checkout master
这是怎么回事?知道为什么我不再能在分支中进行孤立的更改,而不会在其他分支中反映出来吗?
答案 0 :(得分:1)
切换分支时,未提交的更改将反映在新分支中。
为了隔离new_feature分支中的更改,请使用git stash或在将分支切换为master之前提交更改。
git stash