有多个分支的github repo的唯一git url?

时间:2016-01-18 20:39:36

标签: python git github

我正在查看一个烧瓶应用程序,我想将其导入openhift项目(https://github.com/lpolepeddi/intro-to-flask)。这包含一系列'检查点'(分支)作为tut的一部分。我想获取项目起点https://github.com/lpolepeddi/intro-to-flask/tree/20_visibility_control处的最终代码。是一种为表格

的分支获取唯一git网址的方法
https://github.com/lpolepeddi/intro-to-flask.git

因此我可以使用如下命令将其拉入:

 git remote add upstream -m master https://github.com/shekhargulati/flask-login-openshift-quickstart.git

1 个答案:

答案 0 :(得分:3)

虽然据我所知“单分支GitHub url”不存在,你可以克隆整个仓库,然后更改分支:

git clone https://github.com/lpolepeddi/intro-to-flask.git
cd intro-to-flask
git checkout 20_visibility_control

或如this answer中所述,只克隆一个分支:

git clone --branch 20_visibility_control --single-branch https://github.com/lpolepeddi/intro-to-flask.git