外观
First, get commit id:
tengyunfengdeMacBook-Pro:test-git yakima$ git log
commit 25c92d1f05c56827b306689f426278e1cba8e837
Author: Yakima <cleveryun@163.com>
Date: Mon Jul 31 10:24:00 2017 +0800
third commit
commit 13d46518f355aa88e85979d616203748c38dde33
Author: Yakima <cleveryun@163.com>
Date: Mon Jul 31 10:23:35 2017 +0800
second commit
commit 0b01db0d3923ec3cfa8b643286ff9333c20cc5de
Author: Yakima <cleveryun@163.com>
Date: Mon Jul 31 10:21:59 2017 +0800
first commitThen, roll back local version:
tengyunfengdeMacBook-Pro:test-git yakima$ git reset --hard 13d46518f355aa88e85979d616203748c38dde33
HEAD is now at 13d4651 second commitAnd, check results of local rolling-back:
tengyunfengdeMacBook-Pro:test-git yakima$ git log
commit 13d46518f355aa88e85979d616203748c38dde33
Author: Yakima <cleveryun@163.com>
Date: Mon Jul 31 10:23:35 2017 +0800
second commit
commit 0b01db0d3923ec3cfa8b643286ff9333c20cc5de
Author: Yakima <cleveryun@163.com>
Date: Mon Jul 31 10:21:59 2017 +0800
first commitFinally, roll back online version:
tengyunfengdeMacBook-Pro:test-git yakima$ git push -f
Total 0 (delta 0), reused 0 (delta 0)
To https://github.com/Yakima-Teng/test-git.git