아무코딩

[Git] gitignore 적용방법 본문

Git

[Git] gitignore 적용방법

동 코 2020. 4. 18. 23:25

.gitignore 이란 원하지 않는 파일을 git에서 제외 시킬 수 있는 설정 file 이다. 적용은 간단하다. 아래대로만 따라하면 된다.

 

1. git ignore 파일 만들기

  • 항상 최상위 Directory 에 존재해야한다.

2. 적용하기 

git rm -r --cached .
git add .
git commit -m "Apply .gitignore"
git push origin master 

 

Reference

https://nesoy.github.io/articles/2017-01/Git-Ignore

'Git' 카테고리의 다른 글

[Git/Markdown] 마크다운작성시 접기/펼치기 만들기  (0) 2020.03.17
Comments