我一直在關注如何在Rails中構建博客,現在我已經陷入困境,想要訪問GitHub上的以前的提交。我是新來的GitHub,並假定當開發者想要他的進步保存到GitHub上的教程中每一次,他援引在github上沒有存儲庫提交?
$ git status
$ git add .
$ git commit -am "some info about the current commit"
救他的項目在一定的狀態。 那麼,我一直在這樣做,現在我已經到了我的項目破產的地步,並希望在工作時將其恢復到我最後一次提交。我調用了:
$ git log
commit 7f6dd520095ead774a8e612048f52ee11fdfe154
Author: danny rosenfeld <[email protected]>
Date: Sat Sep 19 17:21:56 2015 +0300
Add pages
commit b84c3a601aeacdacbd2a8c71b85e1236554a1275
Author: danny rosenfeld <[email protected]>
Date: Sat Sep 19 16:49:24 2015 +0300
add comments
commit 5822d7c90d15696536d30d531f424863d58de6c7
Author: danny rosenfeld <[email protected]>
Date: Sat Sep 19 16:15:33 2015 +0300
Edit and delete posts
它顯示我的提交存在。現在我該如何訪問它們?我不相信我創建了特定的存儲庫,但顯然存在這些提交。
你可以嘗試'git checkout commitno'切換到特定的提交。 – Aks
如何將特定提交的所有文件夾/文件保存到位置,即我的桌面? –