본문 바로가기

ETC/TIP

Eclipse에서 Git이 pull이 안될때

갑자기 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


'ETC > TIP' 카테고리의 다른 글

[IntelliJ] Export Jar  (0) 2016.12.08
IntelliJ로 만든 프로젝트 Github에 올리기  (0) 2016.11.13
Sublime Text Tip  (0) 2014.03.12
[알고리즘] Dijikstra 최단경로 알고리즘  (0) 2014.03.04
Git Data Transport Commands  (0) 2014.03.03