-
Ch5. Ignoring Files in GitRay Wenderlich/Mastering Git 2021. 8. 5. 23:56
*/*.html
Subdirectory에 있는 html파일을 무시하라!
Nesting .gitignore files
top directory의 .gitignore에서 */*.html 를 선언했다.
근데 특정 subdirectory에서는 html파일을 track하고 싶다면??
!/*.html
!는 부정을 의미하고 /는 지금 이 directory부터라는 의미다.
그래서 /*.html은 지금부터는 html파일을 ignore하지마!! 라는 뜻이다.
Looking at the global .gitignore
git config --global core.excludesfile
터미널에 이 명령어를 실행하면 global .gitignore의 위치를 알려준다.
알려주지 않는다면 이제 만들면 됨 (원하는 위치에 만들어 주면됨)
Ex) touch ~/.gitignore_global)
git config --global core.excludesfile ~/.gitignore_global ~/MasteringGit/ideas $ git config --global core.excludesfile /Users/chrisbelanger/.gitignore_global
Sample .gitignore files'Ray Wenderlich > Mastering Git' 카테고리의 다른 글
Ch8. Syncing With a Remote (0) 2021.08.21 Ch7. Branching (0) 2021.08.06 Ch6. Git Log & History (0) 2021.08.05 Ch4. The Staging Area (0) 2021.07.29 Ch3.Commiting your changes (0) 2021.07.29