gpt4 book ai didi

git - git 错误 'error: pathspec'

转载 作者:太空狗 更新时间:2023-10-29 14:39:49 32 4
gpt4 key购买 nike

我正在使用 git 下载一些文件,然后我执行了“git init”

git pull https://myusername:mypass@github.com/Test/test.git

问题是我想更改我现在所在的分支。从“大师”到“我的分支”。我正在执行 git checkout 'mybranch' 但我得到了这个:

error: pathspec 'mybranch' did not match any file(s) known to git.

错误是什么?

最佳答案

当您初始化一个空存储库并发出 git pull 时,您没有设置任何 Remote 。 .

如果你想使用你仓库中的任何/所有远程分支,你应该使用 git clone <remote>创建 repo 的本地克隆,而不是 git init; git pull <remote>它只是为您提供远程默认分支的副本。

一旦您正确克隆了存储库,假设有一个远程分支 origin/mybranch ,您可以 checkout 一个本地副本,它将通过您的命令跟踪远程:

git checkout mybranch

关于git - git 错误 'error: pathspec',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12266526/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com