In most cases when I use git revert, I usually want to revert only a couple of files. Is there a way to do so via Visual Studio Git GUI? For now, it doesn't seem to be one, even though there were some related feature requests.
For now in this cases, using git revert -n (or --no-commit) and git reset HEAD through console is a better option .