The 13/09/09, Thiago Farina wrote: > Hi, > > I know that I could do simply, instead of above: > $ git checkout --track -b maint origin/maint Or $ git checkout -t origin/maint > OK, now I switched to maint branch. And then I did: > $ git status > > # On branch maint > # Changes to be committed > # (use "git reset HEAD <file>..." to unstage) > # > # new file: git-remote-curl > # new file: git-replace > # > > What happened here? What I have to do now? You've probably added these files to the index, mistakenly. If you don't have uncommited changes, try : git checkout -f master git branch -D maint git checkout -t origin/maint git status The files should now be shown as "Untracked files". -- Nicolas Sebrecht -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html