From here, http://cheat.errtheblog.com/s/git, I think I can recreate a branch in my local repository by
$ git branch mytestbranch
<then I can may changes as my experimental>
My question is how can
- I forget all the changes I made in the 'mytestbranch' branch? and switch back to my original 's stage/version of my repository?
- I keep the changes I made and move every thing to my 'main' branch?
Thank you.
git cloneto make a local repo that mirrors that remote repo. You see a branch named origin/foo, but you want a branch named foo that you can work on. Is that correct? – Daniel Yankowsky Dec 17 '09 at 7:13gitk --allto see what was actually going on in the commits and branches in a graphical fashion. – ndim Dec 18 '09 at 17:45