develog

[git] git remote origin 삭제하기 본문

카테고리 없음

[git] git remote origin 삭제하기

냐옴 2024. 4. 24. 11:40

 

## remote origin 을 확인한다
$ git remote -v
origin  https://github.com/ACCOUNT/my-toy-project (fetch)
origin  https://github.com/ACCOUNT/my-toy-project (push)

## remote origin 을 삭제한다
$ git remote rm origin

## remote origin 이 삭제됐는지 확인한다
$ git remote -v

 

Comments