簡単な/初心者の質問。master ブランチからブランチを作成し (「testing」と言います)、いくつか試してから、マージして戻しました。「テスト」ブランチを変更すると、マスター ブランチでもローカルの変更が行われます。
マージしたらブランチを削除し、再利用しないようにする必要がありますか? 枝が分岐するだけだと思っていました...
明確にするために、私がしていることは次のとおりです。
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!! (?)
助けてくれてありがとう。