git이랑 연결된 프로젝트의 연결을 취소하고 싶을 때
.git 파일을 삭제해주어야 한다.
프로젝트가 삭제되는것이 아니고 깃과 연결되어있는 .git을 삭제하는 것이다.
삭제하는 명령어는
find ./ -name ".git" | xargs rm -Rf
반응형
'공부 > Git' 카테고리의 다른 글
[Git] [rejected] master -> master (non-fast-forward) 해결 방법(강제push) (0) | 2021.02.19 |
---|---|
WARNING! Using --password via the CLI is insecure. Use --password-stdin (0) | 2020.11.03 |
fatal : not a git repository (or any of the parent directories): .git (0) | 2020.10.30 |
[GitLab] Permission denied (publickey). (0) | 2020.10.12 |
master에서 branch를 합치고 싶을 때 (git rebase) (0) | 2020.07.16 |