[GIT] Branch 기본값 설정하기
SourceTree 에서 Merge 할 때 기본으로 선택하는 Branch를 지정하고 싶으면 .git/config 를 수정하면 된다. 다음과 같이 가 있으며 각 Branch 마다 지정할 수 있으니 참고할 것! [branch "master"] remote = origin merge = refs/heads/master [branch "develop"] remote = origin merge = refs/heads/develop