개발 => 복습 후 재정리 대기/Git
[GIT] .gitignore
문법
# : 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
'개발 => 복습 후 재정리 대기 > Git' 카테고리의 다른 글
[Git] Pull Request 후 수정 (2) | 2021.12.18 |
---|---|
[Git] cherry-pick 하는 법 (2) | 2021.12.06 |
[Git] 토큰 인증 로그인 + 자격 증명 - remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. (29) | 2021.08.14 |
[Git] 꾸미기 (0) | 2021.05.18 |
[Git] 명령어 모음 (0) | 2021.05.01 |
댓글