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
干杯!