프로젝트 내에 특정 Log file이나 Count file을 Git에서 제외시킬 수 있는 설정 파일인 .gitignore에 대해 정리한다.
Step1: .gitignore 파일 생성
git 프로젝트의 최상위 디렉토리 내 .gitignore 파일 생성
# 프로젝트 내 img/ directory 무시 img/ # 프로젝트 내 backup 파일 무시 *.bak # 프로젝트 내 특정 파일 무시 test.php
Step2: .gitignore 파일 적용
파일 생성 후 아래 처럼 적용
$ git rm -r --cached . $ git add . $ git commit -m "add ignore file config"
'개발 > Server' 카테고리의 다른 글
[Linux] Ubuntu/Apache2 Letsencrypt 인증서 설치 & 갱신 (0) | 2024.01.09 |
---|---|
[Git] git 충돌 시 강제 덮어쓰기(FETCH) (0) | 2023.04.08 |
[git] AWS EC2 서버 GitHub 세팅 (2) | 2023.03.14 |
[Apache] http to https 리다이렉트 설정 (0) | 2023.03.09 |
[Apahce] URL 확장자 .php/.jsp 숨기기 (0) | 2023.03.02 |
댓글