博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git新建本地分支与远程分支关联问题:git branch --set-upstream【转】
阅读量:6652 次
发布时间:2019-06-25

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

本文转载自:

新建本地分支与远程分支关联问题: branch --set-upstream

 

git在本地新建分支, push到remote服务器上之后,再次pull下来的时候,如果不做处理会报以下提示:

 

 

[html]   
 
  1. You asked me to pull without telling me which branch you  
  2. want to merge with, and 'branch.production.merge' in  
  3. your configuration file does not tell me, either. Please  
  4. specify which branch you want to use on the command line and  
  5. try again (e.g. 'git pull <repository<refspec>').  
  6. See git-pull(1) for details.  
  7.    
  8. If you often merge with the same branch, you may want to  
  9. use something like the following in your configuration file:  
  10.    
  11.     [branch "debug"]  
  12.     remote = <nickname>  
  13.     merge = <remote-ref>  
  14.    
  15.     [remote "<nickname>"]  
  16.     url = <url>  
  17.     fetch = <refspec>  
  18.    
  19. See git-config(1) for details.  

 

 

问题解析:

 

git本地新建一个分支后,必须要做远程分支关联。如果没有关联,git会在下面的操作中提示你显示的添加关联。关联目的是如果在本地分支下操作: git pull, git push ,不需要指定在命令行指定远程的分支.推送到远程分支后,你只要没有显示指定,git pull的时候,就会提示你。

 

解决方法:

 使用命令git branch --set-upstream ;实例如下,其中debug为创建的分支

 

[html]   
 
  1. git branch --set-upstream debug origin/debug  

 

 

命令的最终修改都是针对config文件。

 

使用--set-upstream去跟踪远程分支。 

 

[html]   
 
  1. [core]  
  2.     repositoryformatversion = 0  
  3.     filemode = true  
  4.     bare = true  
  5.     logallrefupdates = true  
  6. [remote "origin"]  
  7.     fetch = +refs/heads/*:refs/remotes/origin/*  
  8.     url = git@192.168.1.160:android2.3.5_r1.git  
  9. [branch "master"]  
  10.     remote = origin  
  11.     merge = refs/heads/master  
  12.   
  13. [branch "debug"]  
  14.     remote = origin  
  15.     merge = refs/heads/debug  
  16.   
  17. [receive]  
  18. denyCurrentBranch = ignore  

注意仓库.git目录下的config文件

 

 

你可能感兴趣的文章
获取时间戳,以秒为单位
查看>>
ASP入门(十)-Session对象
查看>>
RESTEasy使用json返回的例子
查看>>
DNS相关配置文件
查看>>
对于Json和对象转换的学习
查看>>
提高 web 应用性能之 JavaScript 性能调优(转)
查看>>
winform datagridview 重新绘制datagridview的边框。
查看>>
.NET简谈组件程序设计之(初识远程调用)
查看>>
Chromium Embedded Framework中文文档 (使用C API)
查看>>
Java中获取程序路径
查看>>
Oracle错误 ora-12514 解决方法
查看>>
深入理解JavaScript系列(18):面向对象编程之ECMAScript实现(推荐)
查看>>
使用jQuery email check插件开发带有email域名拼写错误校验功能的超酷动态留言版系统...
查看>>
Reading papers_2(与GMM相关,ing...)
查看>>
JAVA类集
查看>>
黑书上的DP 30题
查看>>
[hadoop源码阅读][4]-org.apache.hadoop.io.compress系列2-选择编解码器
查看>>
Android之传感器(二)之电子罗盘
查看>>
开发人员需要熟知的常用Linux命令之六:rpm
查看>>
spring(7)
查看>>