报错信息
- 示例代码:
feature/file
是分支名
fatal: The current branch feature/file has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin feature/file
- 中文释义:
推送错误:当前分支特性/文件没有上游分支。
要推动当前分支并将远端设置为上游,请使用 :
git push --set-upstream origin feature/file
在于当前这个分支没有和任何的仓库发生关联,origin是仓库的一个指针,需要将当前的分支与这个指针之间形成关联。文章来源:https://www.toymoban.com/news/detail-505276.html
解决方法
- 直接允许以下命令即可
git push --set-upstream origin feature/file
执行之后会在github
上自动新建一个 feature/file
的分支。文章来源地址https://www.toymoban.com/news/detail-505276.html
到了这里,关于【Git】push分支报错:fatal: The current branch 当前分支名 has no upstream branch的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!