GIT CHEATSHEET! Ref: http://spheredev.org/wiki/Git_for_the_lazy

撤销上次 git commit

   git reset --soft HEAD^

如果你想把add进去的文件也撤销掉,变成没有add的状态:

   git reset <FILE>