1
我是新來的git。我想利用這個代碼:安裝特定的Git分支
https://github.com/TouchCode/TouchJSON/tree/feature/ARC
但是,當我使用Git我的本地機器上
$ git的子模塊添加git的安裝://github.com/TouchCode/TouchJSON.git
,我只能看到主分支
$ git的分支 *主
我怎麼使用ŧ他的特色/ ARC分支?
我是新來的git。我想利用這個代碼:安裝特定的Git分支
https://github.com/TouchCode/TouchJSON/tree/feature/ARC
但是,當我使用Git我的本地機器上
$ git的子模塊添加git的安裝://github.com/TouchCode/TouchJSON.git
,我只能看到主分支
$ git的分支 *主
我怎麼使用ŧ他的特色/ ARC分支?
酷似應該是:
git clone https://github.com/TouchCode/TouchJSON.git
cd TouchJSON
git checkout feature/ARC
或者
git clone https://github.com/TouchCode/TouchJSON.gib -b feature/ARC
git checkout feature/ARC
乾杯!