Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Windows
- VirtualBox
- 줄바꿈 문자
- resource
- import
- Eclipse
- lsof
- JavaScript
- netsh
- web.xml
- profile
- plugin
- Mac
- 단축키
- context
- bash
- tomcat
- Windows 10
- port
- IntelliJ
- GIT
- grep
- Source
- maVen
- ssh
- vscode
- Quartz
- find
- 네트워크
- xargs
Archives
- Today
- Total
develog
[git] git remote origin 삭제하기 본문
## 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