如何在我的本地存储库中看到最近在Bitbucket存储库中创建的分支?

时间:2017-11-06 17:32:35

标签: git git-checkout

我只是想将最近在Bitbucket中创建的分支'brancTest'导入我的本地存储库。

这就是我正在做的事git checkout -b 'brancTest' origin/brancTest 我收到了这条消息:

fatal: 'origin/brancTest' is not a commit and a branch 'brancTest' cannot be created from it 

我在开发git状态时给我这个:

git status  
On branch develop
Your branch is up-to-date with 'origin/develop'.
nothing to commit, working tree clean

当我git branch -a时,我看不到所有分支列表中的'brancTest'。

如何导入该分支?

2 个答案:

答案 0 :(得分:1)

git fetch
git checkout brancTest

答案 1 :(得分:0)

尝试使用“git remote -v”来验证其中是否列出了任何名为“origin”的遥控器。

如果找不到'origin',那就是遥控器(默认情况下应该在克隆存储库时默认创建)。

使用以下内容再次添加原点:

git remote将origin url /添加到/ your / fork