Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 코딩테스트
- node
- 프론트엔드
- 그럼에도불구하고
- react
- github
- 코드업
- node.js
- JavaScript
- Servlet
- webpack
- frontend
- coding
- CSS
- react-router-dom
- JS
- @media
- 그럼에도 불구하고
- max-width
- cleancode
- java
- HTML
- TypeScript
- 자바
- 자바문제풀이
- media query
- redux
- 반응형 페이지
- 변수
- git
Archives
- Today
- Total
목록.gitignore (1)
그럼에도 불구하고
[Git, GitHub] .gitignore가 작동하지 않을때 대처하는 법
.gitignore가 작동하지 않을때 대처하는 법에 대해 알아보겠습니다. .gitignore가 제대로 작동되지 않아서 .gitignore에 게시된 파일이 github에 계속 올라가 있는 경우가 있습니다. git의 캐시가 문제가 되는거라 아래 명령어로 캐시 내용을 전부 삭제 후 다시 add All해서 commit하면 됩니다. git rm -r --cached . git add . git commit -m "fixed untracked files" ref: https://stackoverflow.com/questions/11451535/gitignore-is-ignored-by-git
이모저모/Git, GitHub
2023. 6. 12. 19:08