개발 잘 하고 싶다 => 알고 쓰자/ERROR(삽질) 모음
[Git] .ignore
처음이라 그럴 수 있다는 변명을 하며...
git이 한번 꼬여버려 걷잡을 수 없는 삽질을 하다
결국 .ignore 의 중요성을 정말 너무 매우 몹시 엄청나게 크게 강하게 절절하게 눈물겹게 느끼게 되었다
아래의 문법 역시 절대 잊지 않겠구나...
# : comments
# no .a files
*.a
# but do track lib.a, even though you're ignoring .a files above
!lib.a
# only ignore the TODO file in the current directory, not subdir/TODO
/TODO
# ignore all files in the build/ directory
build/
# ignore doc/notes.txt, but not doc/server/arch.txt
doc/*.txt
# ignore all .pdf files in the doc/ directory
doc/**/*.pdf
'개발 잘 하고 싶다 => 알고 쓰자 > ERROR(삽질) 모음' 카테고리의 다른 글
query string & path variable (req.query & req.params) (0) | 2021.06.29 |
---|---|
Error 를 대하는 자세 (0) | 2021.06.29 |
[Git] please move or remove them before you merge (0) | 2021.06.27 |
[Python][MongoDB] find_one이 None 으로 반환될때 (0) | 2021.06.10 |
[Git] warning: CRLF will be replaced by LF in some/file.file 에러 (0) | 2021.06.09 |
댓글