我正在尝试获取具有DateAxisItem更改的pyqtgraph版本,该版本似乎未合并到主源中。
我可以向git发出什么命令来获取此分支?
我试过
git clone https://github.com/pyqtgraph/pyqtgraph -b https://github.com/3rdcycle/pyqtgraph/tree/date-axis-item/pyqtgraph/graphicsItems
但这不起作用。
答案 0 :(得分:2)
您要检出的分支位于不同的存储库(分支)中,因此您希望克隆该存储库,然后您可以使用-b
切换以指定分支的名称,如下所示:
$ git clone https://github.com/3rdcycle/pyqtgraph -b date-axis-item
答案 1 :(得分:1)
试试这个
CCSprite
或者,
git clone -b <branch> <remote_repo>
git clone -b date-axis-item git@github.com:3rdcycle/pyqtgraph.git