지금 내 로컬저장소와 연결된 저장소를 확인하고 싶다면
git remote
저장소 url주소도 같이 보고 싶다면
git remote -v
upstream이라는 이름으로 https://github.com/soosue/test 저장소를 연결하고 싶다면
git remote add upstream https://github.com/soosue/test
upstream으로 연결된 저장소를 upstream2라는 이름으로 바꾸고 싶다면
git remote upstream upstream2
upstream2로 연결된 저장소를 지우고 싶다면
git remote remove upstream2
'TIL' 카테고리의 다른 글
SQL 쿼리 실행 원리 (0) | 2021.09.05 |
---|---|
[Java] 동시성, 스레드 조심해야할 사항1 (0) | 2021.08.07 |
[Git] Fork, Pull Request, Clone, Push (0) | 2021.08.01 |
[Spring] Filter란, (0) | 2021.07.30 |
[Git] fork, pull request, rebase (0) | 2021.07.26 |