grb explain create my_branch github# git_remote_branch version 0.3.0
# List of operations to do to create a new remote branch and track it locally:git push github master:refs/heads/my_branchgit fetch githubgit branch --track my_branch github/my_branchgit checkout my_branch
以某种相关的方式,我试图将远程跟踪分支添加到现有分支,但无法访问我想要添加远程跟踪分支的系统上的远程存储库(因为我经常通过Snapakernet将此存储库的副本导出到另一个有权推送到该远程的系统)。我发现没有办法强制在本地添加尚未获取的远程分支(所以本地不知道远程上存在分支,我会得到错误:the requested upstream branch 'origin/remotebranchname' does not exist)。