I have a couple of Git branches: \'experimental\', \'something\' and \'master\'.
I switched to the \'experimental\' branch. I noticed a bug which is unrelated to \'e
you could:
stash or commit the changes you have been working on the experimental branchcheckout somethingbisect to find the bugcommit the changescheckout experimentaland then:
rebase something if you want a clean commit graph (if you expose this repository and you care about that)or:
merge something if you don't care about 'presentation' :)