git push -u参数是什么意思?--set-upstream
git
编程技术
发布日期
2023-09-07
更新日期
2023-09-07
阅读次数 244
文章字数 339
根据github提示,提交一个已存在的仓库
git -u origin main
一直没去理解,有一天推送一个仓库,它提示
fatal: The current branch main has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin main
To have this happen automatically for branches without a tracking
upstream, see 'push.autoSetupRemote' in 'git help config'.
再查了一下,--set-upstream的简写就是-u,表示把当前的本地当前分支和远程的main分支关联起来,然后就可以推送了。
文章作者: 朱丰华
文章链接: https://smart.52dixiaowo.com/blog/post-496.html
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。
git
发表评论
相关推荐