eclispe git config配置文件配置远程仓库

Posted zouhong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclispe git config配置文件配置远程仓库相关的知识,希望对你有一定的参考价值。

git config基本配置如下:

[core]
    repositoryformatversion = 0
    filemode = false
    logallrefupdates = true
[remote "origin"]
    url = 你的远程仓库url
    fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
    remote = origin
    merge = refs/heads/master

以上是关于eclispe git config配置文件配置远程仓库的主要内容,如果未能解决你的问题,请参考以下文章