728x90
.gitignore 란?
git의 변경사항에 속하지 않게 해 줌
node_modules, package-lock.json 과 같은 파일을 넣는다!
편리하게 하는 법 : http://toptal.com/developers/gitignore
.gitignore 문법
파일 1개만 지우고 싶을 때
package.json
# 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
* gitignore 이 적용이 안 되는 경우 캐시 삭제 후 add commit push 하자!
git rm -r --cached .
git add .
git commit
git push origin master
'학습 내용 정리 > git' 카테고리의 다른 글
Git Commit Message Convention (0) | 2023.08.04 |
---|---|
github issue 작성 시 코드 링크 첨부하기 (0) | 2023.06.24 |
ls -la (0) | 2023.06.13 |
node.js npm git 배포 (0) | 2023.06.13 |
github 다운로드 (0) | 2023.05.18 |