프로젝트 한 내용을 git 레퍼지토리에 push 할 때, 오픈 소스로 사용한 파일을 포함한 경우 git이 복잡해 질 수 있다.
git remote -v 로 연결되어있는 git 을 확인 후에 연결을 끊고 다시 배포하자
# 연결 확인
git remote -v
# 이런식으로 뜰 것이다.
origin https://github.com/****/****.git (fetch)
origin https://github.com/****/****.git (push)
# 연결 끊기
git remote remove origin
반응형
'🔨 Trial and Error Log' 카테고리의 다른 글
tqdm_notebook (0) | 2021.04.15 |
---|---|
[python] 중첩 리스트 풀기, list flatten (1) | 2021.03.19 |
[R + jupyter notebook] R과 jupyter notebook 연동 (0) | 2020.10.01 |
[git] .gitignore 생성 (1) | 2020.09.22 |
[mac os 환경구축] Anaconda 환경구축 (2020.09기준) (2) | 2020.09.02 |