1. 해당 프로젝트명으로 이동
cd D:\dev\workspace\프로젝트명
2. .gitignore 파일 생성후 제외할 패턴작성 후 저장
*.com
*.class
*.dll
*.exe
*.o
*.so
3. remove
git rm -r --cached .
4. add
git add .
5. commit
git commit -m "add .gitignore"
6. push
git push origin master
'DEV > Git' 카테고리의 다른 글
Git 사용법 (0) | 2023.02.13 |
---|---|
Git CLI 정리 (0) | 2022.12.28 |
GitHub Desktop 사용법 (0) | 2020.09.07 |
Remote Repository 다른 사용자 초대 및 Clone (0) | 2020.08.31 |
GitHub Repository 생성 (0) | 2020.08.31 |