我只是想将最近在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'。
如何导入该分支?
答案 0 :(得分:1)
git fetch
git checkout brancTest
答案 1 :(得分:0)
尝试使用“git remote -v”来验证其中是否列出了任何名为“origin”的遥控器。
如果找不到'origin',那就是遥控器(默认情况下应该在克隆存储库时默认创建)。
使用以下内容再次添加原点:
git remote将origin url /添加到/ your / fork