본문 바로가기
개발/Server

[Git] 특정 파일 폴더 제외 적용 (.gitignore)

by stephen26 2023. 5. 6.

프로젝트 내에 특정 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"

 

 

댓글