Git2 .gitignore 파일에 등록된 파일이 이미 commit되어 있는 경우 프로젝트를 진행하다가 배포 시점이 되면서 .gitignore를 만들어 몇몇 파일들은 배포되지 않도록 지정해주었습니다. 그 후에 commit을 하려니 아래와 같이 unmerged files 때문에 commit이 되지 않는다는 에러가 발생했습니다. add . 를 하고 commit 시도를 다시해도 안되길래, 혹시나 하고 다른 브랜치로 checkout을 해보려고 했더니 역시 안되었습니다 ㅎㅎ .gitignore에 설정된 directory 중에 .idea가 있었는데, 먼저 기존에 commit 되어 있는 .idea 파일들을 내려주어야 한다고 해서 # Quit the merge git merge --abort # remove the whole folder from the repo git rm -rf --cached .. 2022. 9. 5. Git command & error 정리 1. Command 1) 특정 파일이나 디렉토리만 commit 하고자 할 때 $ git commit [some files] 2) 설정되어 있는 git remote url 확인하기 $ git config --get remote.origin.url $ git remote --v 3) git remote url 변경하기 $ git remote set-url 4) 새로운 git remote 추가하기 $ git remote add {remote name} {repository-url} 5) commit 한 히스토리 보기 $ git log https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History Git - Viewing the Commit Histo.. 2022. 4. 6. 이전 1 다음 반응형