ETC/TIP
Eclipse에서 Git이 pull이 안될때
Gyrfalcon
2014. 3. 13. 21:19
갑자기 pull이 안될때 대처법
not configured for pull
.git\conf 파일이 있는데 이것을 아래와 같이 수정하면 끝!
[core]
repositoryformatversion = 0
filemode = false
logallrefupdates = true
[remote "origin"]
url = [github url (e.g https:/github.minsub.com/....)]
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master