百度经验里面有很多eclipse github经验,然而大都不完整,无法使用team->pull功能。
其实这是eclipse配置的问题。可以去window->preference->team->git->configuration->repository Setting.里面添加参数:
[core]
repositoryformatversion = 0
filemode = false
logallrefupdates = true
[remote "origin"]
url = https://git.oschina.net/repo/project.git
fetch = +refs/heads/*:refs/remotes/origin/*
push = +refs/heads/master:refs/heads/master
[branch "master"]
remote = origin
merge = refs/heads/master
也可以去工程目录下,.git目录下用记事本打开config文件。把上面代码复制进去。根据自己情况做修改。
本文作者为新逸网络,转载请注明。