Atom에서 단축키로 git operation을 사용할 수 있다.
사용하려면 별도로 git client를 설치해 주어야 한다.
Windows user라면 https://git-scm.com/download/win 에서, ubuntu라면 apt-get install git
.
설치 후 파일이름이 한글일 때 git status
등에서 이름을 정상적으로 보고 싶다면 아래와 같이.
git config --global core.quotepath false
NOTE: https://www.kernel.org/pub/software/scm/git/docs/git-config.html#_variables 참조.