一个简单/新手的问题。我从主分支创建了一个分支(比如“测试”),尝试了一些东西,然后将其合并回来。现在,当我修改“测试”分支时,本地更改也会在主分支上进行。
我应该在合并后删除一个分支而不重用它吗?我以为分支会发散...
为了更清楚,我所做的是:
git checkout master
git branch testing
git checkout testing
// Modify files...
git add <modified-files>
git commit -m 'It worked!'
git checkout master
git merge testing
// Now I go back and edit the testing brach
git checkout testing
// Edit files...
git checkout master
// I can see the local changes I made to the testing branch!! (?)
谢谢你的帮助。