git连接不上远程仓库---visualstudio提交代码报错:no upstream configured for branch 'master'

Posted js0618

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git连接不上远程仓库---visualstudio提交代码报错:no upstream configured for branch 'master'相关的知识,希望对你有一定的参考价值。

1,新建文件夹,在文件下下鼠标右键git bush--->git init,初始化仓库;

2,设置gitthub仓库地址:git remote add origin https://github.com/z*****g/lm.git

3,git pull origin master

4,git push --set-upstream origin master,关联一个远程分支,并从这个分支上传下带代码

技术分享图片

技术分享图片

git branch查看分支

git add .

git commit -m "提交注释"

git checkout  master 切换到master分支

git pull 从远程仓库拉去最新代码,更新代码后,要看代码是否有冲突,解决冲突后,git merge

git push把代码提交到远程仓库,git merge

 

参考网址:

https://blog.csdn.net/benben_2015/article/details/78803753

https://www.cnblogs.com/xuanhun/p/6019038.html

 

以上是关于git连接不上远程仓库---visualstudio提交代码报错:no upstream configured for branch 'master'的主要内容,如果未能解决你的问题,请参考以下文章

git怎么把远程仓库跟本地连接

sourcetreesourcetree连接远程仓库需要登陆但是一直登陆不上的问题 解决方法

Git系列Git连接远程仓库(Gitee码云)

git添加本地仓库与远程仓库连接

Git系列在IDEA操作Git本地仓库与连接远程Git仓库(推送合并拉取克隆操作)

路飞-day5——git 多分支开发git远程仓库ssh方式连接远程仓库协同开发冲突解决线上分支合并远程仓库回滚