Aug
02
Git: Undo commits
Filed Under (Coding, Git, Version control) by 2of1 on 02-08-2010
Undo last commit:
git reset --soft HEAD^
Commit with previous commit message:
git commit <-a OR file(s)> -c ORIG_HEAD
Undo all commits:
git reset master^



