I just did a
git commit -m \"blah\"
then I added some files, how do I rollback and remove what is in my current files that have not yet be
You can revert a commit using git revert HEAD^ for reverting to the next-to-last commit. You can also specify the commit to revert using the id instead of HEAD^
git revert HEAD^