1. sourcetree 도구 > 옵션 > 기본 텍스트  인코딩 확인

 

- 기본 텍스트 인코딩을 euc-kr 이나 utf-8로 바꿔본다.

 

2. sourcetree 설정 > 설정파일 편집 > 워드패드, notepad++ 열기

 

 

다음을 추가해준다.

 

[i18n]
  commitEncoding = UTF-8

  logOutputEncoding = UTF-8

 

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


[remote "origin"]
  url = https://github.com/shlee0882/spring-uses.git
  fetch = +refs/heads/*:refs/remotes/origin/*

 

[branch "master"]
  remote = origin
  merge = refs/heads/master

 

 

+ Recent posts