"Tim Visher" <tim.visher@xxxxxxxxx> writes: > My question is this: is it possible to revert the changes that I > haven't staged so that the file looks as if everything inside of it > has been staged because none of the stuff I didn't stage is there > anymore. The last part of the sentence after "because" does not parse for me at all, but I think you are after one of the following: (1) if you want to get rid of garbage changes in your work tree, you would want "git checkout $that_path"; (2) if you want to temporarily stash away further changes in your work tree, because you would want to first test what is staged, commit it, and then later continue to refine the changes stashed away thusly, you would want "git stash --keep-index". -- 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