博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git push时提示"fatal: The current branch master has no..."
阅读量:5328 次
发布时间:2019-06-14

本文共 510 字,大约阅读时间需要 1 分钟。

git push到远程仓库时提示:fatal: The current branch master2 has no upstream branch. To push the current branch and set the remote as upstream,

use git push --set-upstream origin master2,如图:

大意是当前分支与远程分支没有建立关联,提示运行  git push --set-upstream origin master2 与远程仓库建立关联,运行后即可通过 git push 推送成功,如果已在远程github仓库中手动建过同名的本地分支也可通过另一种方法,即:

git push 
<远程主机名>
<本地分支名>
:
<远程分支名>
,两种方法如下: 一、 git push --set-upstream origin master2 二、 git push origin master2:master2

 

转载于:https://www.cnblogs.com/splendid/p/10008503.html

你可能感兴趣的文章
java第六次作业
查看>>
vsftpd虚拟用户【公司系统部分享】
查看>>
盒子box在网页中居中的方法
查看>>
Python之旅Day14 JQuery部分
查看>>
二十一、 Memento 备忘录(行为型模式)
查看>>
python 3.X中打包二进制数据存储字符串出错原因分析
查看>>
core--线程池
查看>>
B+树介绍
查看>>
redux-effect
查看>>
kaike的FLAGs
查看>>
Swift和OC混编
查看>>
深度学习文献阅读笔记(6)
查看>>
Android轻量级的开源缓存框架ASimpleCache
查看>>
让页面上图片不变形
查看>>
pyspider--post
查看>>
他山之石:加载图片的一个小问题
查看>>
设计模式讲解2:static proxy和decorator的不同点
查看>>
IOS 多个UIImageView 加载高清大图时内存管理
查看>>
shell - 常识
查看>>
[PHP] excel 的导入导出
查看>>