1. global gitignore git을 써본 적이 있다면 .gitignore의 존재를 알 것이다. .gitignore에 추가된(작성된) 디렉토리들은 말 그대로 무시되며, untracked files에도 내역이 보이지 않는다. http://gitignore.io/ 같은 사이트를 쓰면 편리하다. 운영체제와 프로그래밍 언어 등을 고르면 적당한 .gitignore를 손쉽게 만들 수 있다. 그런데, global gitignore도 존재한다. https://help.github.com/en/github/using-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer You can also create a global..