egit常见问题总结

1.config文件配置

[core]
    repositoryformatversion = 0
    filemode = false
    logallrefupdates = true

    [branch "master"] 
        remote = origin
        merge = refs/heads/master
    [remote "origin"] 
        url = https://github.com/androidzhaoxiaogang/rocket.git
        fetch = +refs/heads/*:refs/remotes/origin/*

2.cannot open git-upload-pack问题

eclipse中的windows-->Preferences-->Team-->Git-->Configuration-->User Settings.然后点Add Entry新建一个键值对,输入http.sslVerify=false。

你可能感兴趣的:(egit常见问题总结)