.gitignore 파일이란?
- ".gitignore" 파일은 Git에 소스를 올릴 때 특정 파일이름 패턴이 업로드 되지 않도록 설정하는 파일
# # => 주석
# logs => logs라는 파일 또는 폴더
# *.log => 확장자가 log라는 모든 파일
# error.log* => error.log 이부분까지 일치하는 파일
# tmp/ => tmp의 하위 폴더
# tmp/* => 해당폴더의 모든것
# !tmp/.hatccess => 해당파일은 정상 적용 시켜라
등등으로 표현을 한다.
LIST
'WEBD > 서버' 카테고리의 다른 글
centos7 원격데스크탑 / XRDP[ Server ][ Linux ] (0) | 2020.10.06 |
---|---|
centos7 gui 설치 / 접속 / 언어설정[ Server ][ Linux ] (0) | 2020.10.06 |
CentOS7 gitlab SSH key 생성[ Server ][ Linux ] (0) | 2020.10.06 |
centos7 vim 보안 취약점 해결( vim update )[ Server ][ Linux ] (0) | 2020.10.06 |
centos7 kloxo-mr7 웹으로 로그인 오류[ Server ][ Linux ] (0) | 2020.10.06 |