How to get certain commit from GitHub project

后端 未结 11 1225
名媛妹妹
名媛妹妹 2020-12-07 07:27

I need to download the Facebook API from GitHub. Normally, I just click on the \'Downloads\" tab to download the latest source code. In this case, I need an older commit: 91

11条回答
  •  独厮守ぢ
    2020-12-07 08:04

    Try the following command sequence:

    $ git fetch origin 
    $ git checkout FETCH_HEAD
    $ git push origin master
    

提交回复
热议问题