Junio C Hamano <junkio@cox.net> writes: > On a related topic of removing unwanted paths, earlier I said > 2-way is used to make sure "git checkout" takes your changes > with you when you switch branches. As a natural consequence of > this, if you do not have any local changes, "git checkout" > without "-f" does the right thing -- it removes unwanted paths > that existed in the original branch but not in the branch you > are switching to. Here is an unsolicited advice ("tip of the day"). I was on a branch which had some local "throwaway" changes, and I wanted to switch back to the master branch. To be honest, I even forgot I had local changes there. So I ran "git checkout", and here is what happened. junio@siamese:~/git$ git checkout master fatal: Entry 'Documentat...' not uptodate. Cannot merge. The easiest is "git checkout -f master" at this point, but I usually do not do that. If that entry "git checkout" complains about is something that is not in the master branch and I have throwaway changes, "git checkout -f master" would leave that file with throwaway changes behind. So I did this first: junio@siamese:~/git$ git reset --hard This would sync my working tree to the current branch. Then junio@siamese:~/git$ git checkout master would switch branches properly, removing that new file that should not exist in the working tree. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Wed Nov 30 19:38:22 2005
This archive was generated by hypermail 2.1.8 : 2005-11-30 19:38:28 EST