git push.default设置

转自:http://blog.csdn.net/daijingxin/article/details/51326715

在进行一次空仓库的提交时,我遇到了这个警告

警告如下:

warning: push.default 未设置,它的默认值将会在 Git 2.0 由 ‘matching‘

修改为 ‘simple‘。若要不再显示本信息并在其默认值改变后维持当前使用习惯,

进行如下设置:

git config --global push.default matching

若要不再显示本信息并从现在开始采用新的使用习惯,设置:

git config --global push.default simple

参见 ‘git help config‘ 并查找 ‘push.default‘ 以获取更多信息。
(‘simple‘ 模式由 Git 1.7.11 版本引入。如果您有时要使用老版本的 Git,
为保持兼容,请用 ‘current‘ 代替 ‘simple‘ 模式)

No refs in common and none specified; doing nothing.
Perhaps you should specify a branch such as ‘master‘.

fatal: The remote end hung up unexpectedly

Gogs: Internal error
Failed to execute git command: exit status 128
error: 无法推送一些引用到 ‘[email protected]:daijingxin/addressbook.git‘
git push.default设置

October 31, 2013GNU/LinuxDebian, Gitopenwares   

    当然首先我要先说明一下我电脑上git的版本,如下:


    $ git --version

    git version 1.8.4.rc3

    之后我查找了一些关于git push.default设置的知识。

    默认配置下,当使用git push命令而没有明确的指名本地分支和远程参考分支的情况下,会有如上的提示。

    如果git push命令没有明确指定引用规格(refspec),也就是没有指定推送的源分支和目标分支,那么git会采用

push.default定义的动作。不同的值适用于不同的工作流程模式。

    显而易见,主要是因为之前没有进行设置引用规格才出现的这种问题,现在我把push.default的可用值与配置方法贴在下面。


    push.default可用的值如下:

1.nothing

    不推送任何东西并有错误提示,除非明确指定分支引用规格。强制使用分支引用规格来避免可能潜在的错

误。

 

    2.current

    推送当前分支到接收端名字相同的分支。

    

    3.upstream

    推送当前分支到上游@{upstream}。这个模式只适用于推送到与拉取数据相同的仓库,比如中央工作仓库流

程模式。

 

    4.simple

    在中央仓库工作流程模式下,拒绝推送到上游与本地分支名字不同的分支。也就是只有本地分支名和上游分

支名字一致才可以推送,

    就算是推送到不是拉取数据的远程仓库,只要名字相同也是可以的。在GIT 2.0中,simple将会是push.default的默认值。

    simple只会推送本地当前分支。

 

    5.matching

    推送本地仓库和远程仓库所有名字相同的分支。

    这是git当前版本的缺省值。


    一般来说我们使用simple就可以进行正常的使用,如果严格一点儿可以用nothing。

    配置push.default的命令如下:

    git config --global push.default simple

时间: 2024-10-25 19:52:32

git push.default设置的相关文章

git 版本控制 git push.default 的设置

在新装的 ubuntu 的笔记本上搭建开发环境,新装的软件也都是比较新的,在使用 git 的时候,就出现了一些新情况,以前没有看见的.虽然说是警告,作为一个名程序员,不应该 care warning 的,但是作为一名处女座的程序员,实在是不能容忍这个该死的 warning 总是出现在我提交代码的时候.于是看一下.转载请注明来自:http://www.binkery.com/ warning: push.default is unset; its implicit value is changin

git push.default is unset

warning: push.default is unset; its implicit value is changing inGit 2.0 from 'matching' to 'simple'. To squelch this messageand maintain the current behavior after the default changes, use: git config --global push.default matching To squelch this m

git push.default 几种设置笔记

1 simple ,本地和远程分支同名才会推送,只会推送当前的分支到远程 ,默认推送分支数量:1 2 matching , 会推送匹配的本地分之到远程分之,假如本地有的分支远程没有,不会把本地推送到远程,默认推送分支数量:多个 3 nothing, 要自己些refspec参数,来如何分配,默认什么都不推送,默认推送分支数量:0 4 current, 本地当前分支推送到远程,如果本地的分支远程没有,就在远程创建同名分支,然后推送,默认推送分之数量:1 5 upstream, 当本地分之和远程分之不

git push 详细手册

git-push(1)手册页 目录位置:git安装位置/Git/mingw64/share/doc/git-doc/git-push.html  谷歌翻译了一下 名称 git-push-更新远程引用以及相关对象 概要 git push [--all | --mirror | --tags] [--follow-tags] [--atomic] [-n | --dry-run] [--receive-pack=<git-receive-pack>] [--repo=<repository&

git push命令每次都要输入用户名和密码的问题处理

git push命令每次都要输入用户名和密码.原因是在添加远程库的时候使用了https的方式.所以每次都要用https的方式push到远程库. 这是github里的界面截图: 查看使用的传输协议: git remote -v [email protected]:~/MyGithub/DailyBlog$ git remote -v origin https://github.com/toyijiu/DailyBlog.git (fetch) origin https://github.com/t

GIT PUSH SSL certificate problem

https://blog.csdn.net/zenson_g/article/details/49148407 两天,不知道为什么,用Git提交代码到服务器时,总出现SSL certificate problem: unable to get local issuer certificate while accessing错误.在网上找了一下,发现解决的方法有以下几个: 方法一: 如果你是用命令行提交的,可以用以下命令设置临时环境变量GIT_SSL_NO_VERIFY. Windows下: se

git更改 push.default 方法

Git在执行 git push 时看到如下消息: warning: push.default is unset; its implicit value is changing in Git 2.0 from 'matching' to 'simple'. To squelch this message and maintain the current behavior after the default changes, use: git config --global push.default

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

Git - warning: push.default is unset

今天心血来潮想要把获取窗体句柄的程序給开源了. 可在执行 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 traditional behavior, use: git config --global push.defaul