I am working locally. I checked out a branch "b1" and did some work on it. I want to keep the branch "b1" the way it is but go back to the master and for it to be like it was before I checked out "b1". But when I check out master with "git checkout master" all the changes I made in the branch are already in the master without any commits or merges. What am I doing wrong?
|
|
|
Did you commit your changes to If you do not commit or stash your changes before switching branches, your changes will remain in your local files, therefore will appear whichever branch you have checked out. |
|||
|
|
|
If the changes you've made to the branch
If the checkout goes through without a hitch (without you having committed anything) then there are no conflicts between the two branches and git will just keep the working tree as it is. What you need to do is checkout |
|||
|
|