Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
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
more
Archives
Today
Total
관리 메뉴

IT could be

Git 원격 저장소에 있는 파일 삭제 본문

Git

Git 원격 저장소에 있는 파일 삭제

얘진 2022. 12. 9. 21:32

gitignore에 있는 파일이 원격 저장소에 올려놨을 때,

또는 원격 저장소에 있는 파일을 삭제하고 싶을 때,

 

git rm --cached [파일명]
git commit -m "[커밋 메세지]" // "remove unnecessary files"
git push origin main

 

로컬 저장소에서도 삭제하고 싶다면

git rm [파일명]
git commit -m "[커밋 메세지]" // "remove unnecessary files"
git push origin main

'Git' 카테고리의 다른 글

GitLab 과 Github 미러링하기  (0) 2022.12.23
GitLab CI/CD  (0) 2022.12.12
Git commit 취소하기  (0) 2022.12.09
Git 사용법 정리  (0) 2022.11.10
Git push된 commit message 변경하기  (0) 2022.11.09
Comments