プッシュしなかったコミットが2つあります。
$ git status
# On branch master
# Your branch is ahead of 'faves/master' by 2 commits.
最初のロールバック(最も古いロールバック)をロールバックし、2番目のロールバックを保持するにはどうすればよいですか?
$ git log
commit 3368e1c5b8a47135a34169c885e8dd5ba01af5bb
...
commit baf8d5e7da9e41fcd37d63ae9483ee0b10bfac8e
...
ここから:
http://friendfeed.com/harijay/742631ff/git-question-how-do-i-rollback-commit-just-want
私はただする必要があります:
git reset --hard baf8d5e7da9e41fcd37d63ae9483ee0b10bfac8e
あれは?