zoukankan      html  css  js  c++  java
  • push.default

    在git commit 之后执行 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 matching
    
    To squelch this message and adopt the new behavior now, use:
    
      git config --global push.default simple


    经查询文档后得知,"matching" 参数是 Git 1.x 的默认行为,其意是如果你执行 git push 但没有指定分支,它将 push 所有你本地的分支到远程仓库中对应匹配的分支。而 Git 2.x 默认的是 "simple",意味着执行 git push 没有指定分支时,只有当前分支会被 push 到你使用 git pull 获取的代码。 

    根据提示,修改git push的行为:

    git config --global push.default matching

    再次执行git push 得到解决。 

    ps: And current mode?

  • 相关阅读:
    刚刚开通
    腾讯面试经历2015
    排序之归并排序
    AC自动机
    后缀数组初步
    概率dp初探
    【NOIP2015】反思+题解
    Built-in functions
    poj2528 Mayor's posters(线段树区间覆盖)
    Codeforces #317 C.Lengthening Sticks(数学)
  • 原文地址:https://www.cnblogs.com/Scimanity/p/5039868.html
Copyright © 2011-2022 走看看