I would like to maintain master branch and b1 branch as independent to each other, this is how I've done so far.
I created a brandnew branch called b1
git branch b1
git checkout b1
I open sublime and edited a file called f1.txt, and saved it.
I switch to the master branch
git checkout master
I displayed the content of the file
cat f1.txt
Why I can see the "additional line" I just added when I was on the b1 branch
What did I do wrong???
Please help, thanks.