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
原文地址:https://www.cnblogs.com/zouhong/p/12067618.html