博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git执行pull命令时,报错
阅读量:6457 次
发布时间:2019-06-23

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

在图形界面中,执行拉取操作时,出现下面的错误。

You asked to pull from the remote 'origin', but did not specify

a branch. Because this is not the default configured remote
for your current branch, you must specify a branch on the command line.

 

解决办法:

Edit your .git/config

[branch "master"]  remote = origin  merge = refs/heads/master

 

Now you can simply git push and git pull.

 

参考地址:http://stackoverflow.com/questions/4847101/git-which-is-the-default-configured-remote-for-branch

转载地址:http://zwizo.baihongyu.com/

你可能感兴趣的文章
HDU------checksum
查看>>
使用树莓派拍摄延时动画,制作GIF图
查看>>
css命名规范
查看>>
js 效果
查看>>
19.Java5同步集合类的应用
查看>>
python 关键字yield解析
查看>>
<c:forEach varStatus="status">中 varStatus的作用
查看>>
Aqua Data Studio 数据库开发工具
查看>>
puppet来管理文件和软件包
查看>>
【转载】基于lucene的搜索方案
查看>>
Python基础进阶之路(一)之运算符和输入输出
查看>>
阻塞非阻塞异步同步 io的关系
查看>>
ClickStat业务
查看>>
DMA32映射问题
查看>>
Android内存泄露之开篇
查看>>
leetcode-38 Count And Say
查看>>
提高效率—编程中的技巧
查看>>
导出excel——弹出框
查看>>
高并发程序设计
查看>>
ExtJs之组件(window)
查看>>