Johannes Schneider <mailings@xxxxxxxxxxxxx> writes: > I tried to "git stash " > But then *all* changes are stashed (including my changes)... Not completely answering the question, but "git stash -k" (--keep-index) allows you to do a selective stash. If you have relevant changes staged, and want to commit the unstaged ones elsewhere, you can do something like git stash -k git checkout elsewhere git commit git checkout back-to-your-branch git stash pop -- Matthieu Moy http://www-verimag.imag.fr/~moy/ -- 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