Git master branch has no upstream branch的解决

Git master branch has no upstream branch的解决

在push代码时,出现“git master branch has no upstream branch”问题的原因是没有将本地的分支与远程仓库的分支进行关联。如下图所示:

具体原因: 出现这种情况主要是由于远程仓库太多,且分支较多。在默认情况下,git push时一般会上传到origin下的master分支上,然而当repositorybranch过多,而又没有设置关联时,git就会产生疑问,因为它无法判断你的push目标。

Git 的 “master” 分支并不是一个特殊分支。 它就跟其它分支完全没有区别。 之所以几乎每一个仓库都有 master 分支,是因为git init命令默认创建它,并且大多数人都懒得去改动它

远程仓库名字 “origin” 与分支名字 “master” 一样,在 Git 中并没有任何特别的含义一样。origin” 是当你运行git clone时默认的远程仓库名字。 如果你运行 git clone -o booyah,那么你默认的远程分支名字将会是 booyah/master。

解决办法其实就是确定这两个值,方法有两种:

  • 第一种如上图中的提示:git push --set-upstream origin master。其中的origin是你在clone远程代码时,git为你创建的指向这个远程代码库的标签,它指向repository。为了能清楚了解你要指向的repository,可以用命令git remote -v进行查看。master是你远程的branch,可以用git branch -a查看所有分支,远程分支是红色的部分。然后确定好这两个值后,将值换掉即可。
  • 另一种方法是:git push -u origin master。同样根据自己的需要,替换originmaster

两个命令的区别是第一条命令是要保证你的远程分支存在,如果不存在,也就无法进行关联。而第二条指令即使远程没有你要关联的分支,它也会自动创建一个出来,以实现关联。

---------------------

本文来自 benben_2015 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/benben_2015/article/details/78803753?utm_source=copy

原文地址:https://www.cnblogs.com/nafio/p/9726478.html

时间: 2024-10-17 12:09:12

Git master branch has no upstream branch的解决的相关文章

Android Studio中git新建远程(remote)branch?

新建远程branch有两种方式: 方式一:命令行 git push origin  <branch-name>,branch-name就是你要新建的远程branch的名称.你可以用git bash或者Android Studio中的Terminal敲命令行. 方式二:直接通过Android Studio来创建远程branch,很简单,一步就可以了.我直接上图: 下面图中你看到远程的branch就两个:master和nick 接下来,我Push我当前的branch到远程,看下图红线框起来的地方,

[Practical Git] Switching between current branch and last checkout branch

When working on a project, it is much easier to work on features and bugs in isolation of the rest of the project. We can do this with git branches; a branch is a copy of the working directory, staging area, and project history; we create a branch, t

git fetch 取回所有分支(branch)的更新(转)

解决办法 运行: git fetch git brance -r git fetch 命令简介及扩展 默认情况下,git fetch取回所有分支(branch)的更新.如果只想取回特定分支的更新,可以指定分支名. git fetch <远程主机名> <分支名> 比如,取回origin主机的master分支.所取回的更新,在本地主机上要用"远程主机名/分支名"的形式读取.比如origin主机的master,就要用origin/master读取. git fetch

Git 协作:Fetch Pull Push Branch Remote相关

前言 学习git的时候,我们首先学习的是最常用的,自己独立开发Software时用的命令: git init #初始化git仓库 git add <file_name> #将文件添加到暂存区 git rm <file_name> #将暂存区的该文件删除 git commit -m "<commit info>" #将暂存区的修改提交到当前分支 git status #查看当前状态 git reset --hard <commit_id>

eclipse git 报错:the current branch is not configured for pull No value for key branch.xxx.merge found

eclipse git 报错:the current branch is not configured for pull No value for key branch.xxx.merge found in configuration 如图: 这是因为 在用gui创建分支的时候 config文件没有创建branch 在config文件加上 [branch "xxx"] remote = origin merge = refs/heads/xxx 即可 eclipse git 报错:th

[Android Studio] Android Studio如何查看branch列表及切换branch(转载)

转载地址:http://blog.csdn.net/hyr83960944/article/details/36185231 用Git bash去切换相信大家都会,一行命令行搞定的问题.而在Android Studio中可能很多人刚开始会找不到哪里去切换,这边主要讲三种方式,其实三种方式归根结底是一样的,只是入口不同而已. 第一种: 第二种: 第三种: 三种方式点击后,都会出现下面这个对话框,branch主要分为Local和Remote,Local就是存在本地Repo的,你可以直接进行切换.Re

Git master合并分支时提示“Already up-to-date”

Git master合并分支时提示"Already up-to-date" ? 在使用Git把当前分支合并到master提示"Already up-to-date",但当前分支和 master 分支代码不同步. ? 假设当前分支是:dev,主分支是:master. 解决方法: git checkout master: git reset --hard dev; git push --force origin master ? 如果不考虑配置文件等测试,生产不同的文件

关于git远程版本库的一些问题之解决

Part1:CentOS6.5免密码登录 修改/etc/ssh/sshd_config RSAAuthentication yesPubkeyAuthentication yesAuthorizedKeysFile /root/.ssh/authorized_keys 启用这三行,然后重启service sshd restart设置.ssh目录权限chmod 700 -R .ssh如果你想要每台机子都无密码登录,那么把每台机子产生的密钥添加到文件中(这是在受控端机子上面执行的)cat id_rs

Git 2.x 中git push时遇到 push.default 警告的解决方法

近在学习使用 git&GitHub,然后今天遇到了一个问题.在执行 git add 和 git commit 操作之后,再进行 git push 操作,出现了如下提示: $ git push warning: push.default is unset; its implicit value has changed in Git 2.0 from 'matching' to 'simple'. To squelch this message and maintain the traditiona