Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的遥控器上有一个分支,我的本地仓库不知道。我正在尝试在本地创建分支,跟踪和拉取,但分支的名称中有一个正斜杠。
我的结果:
$ git branch --set-upstream feature/users origin/feature/users fatal: Not a valid object name: 'origin/feature/users'
我是否需要转义分支名称中的正斜杠?我试过引号和反斜杠。
上游分支必须是现有的本地分支(在本地仓库中存在的意义上是本地的),然后才能将其设置为上游。origin/feature/users在尝试创建跟踪它的本地分支之前,您应该从远程获取当前。
origin/feature/users