如何检出git标签并在本地分支(标签)上工作?
起源/ myremotebranch(非主分支)
标签为:
myremotebranch-tag-v1.0 myremotebranch-tag-v1.1 myremotebranch-tag-v1.2
我想签出myremotebranch-tag-v1.1并使用newlocalbranch-tag-v1.1
我正在运行以下命令: git checkout -b newlocalbranch-tag-v1.1 myremotebranch-tag-v1.1
但是当我在新的本地分支myremotebranch-tag-v1.1上运行git pull时,出现以下错误
当前分支没有跟踪信息。 请指定您要合并的分支。 有关详细信息,请参见git-pull(1)
select cost
from table1
union all
select cost
from table2
如果您希望为此分支机构设置跟踪信息,可以使用以下方法进行
:git pull <remote> <branch>
有人可以解释一下为什么我看到这个分支而没有跟踪吗?