git
-
[Git branch]프론트앤드/이것저것 2023. 2. 23. 15:05
Please enter a commit message to explain why this merge is necessary, especially if it merges an updated upstream into a topic branch 해결하기 git merge를 진행하려고 하면 한번씩 꼭.... merge가 왜 필요한지 commit message를 남기라고 하더라.. Please enter a commit message to explain why this merge is necessary, especially if it merges an updated upstream into a topic branch 이런식으로 나오고 키보드 누르더라도 아무것도 안눌린다.. 이때!! 해결할 수 있는 방법! 1. i..
-
git rm --cached 파일명카테고리 없음 2023. 1. 12. 18:22
git에 수정한 파일을 add, commit 후 github에 push 까지 했는데, 확인해보니 private한 사진들도 같이 올라가져 버렸다😂 이때 사용 가능한 명령어 더보기 * 원격 저장소와 로컬 저장소 파일을 모두 삭제할 경우 git rm 파일명 * 원격 저장소에 있는 파일만 삭제하고, 로컬 저장소에 있는 파일은 삭제 하지 않는 경우 git rm --cached 파일명 .gitignore 파일을 만든 후 해당 파일에 삭제할 파일들 확장자를 같이 넣어주기