1. 이전 계정의 깃 repository와 연결된 폴더로 이동 후
2. 현재 remote 정보 확인
git remote -v
> origin https://github.com/USERNAME/REPOSITORY.git (fetch)
> origin https://github.com/USERNAME/REPOSITORY.git (push)
3. 바꾸고자 하는 remote url을 set-url 명령어와 함께 입력
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
4. 바뀐 remote 정보 확인
git remote -v
> origin https://github.com/USERNAME/REPOSITORY.git (fetch)
> origin https://github.com/USERNAME/REPOSITORY.git (push)
'웹' 카테고리의 다른 글
[Spring] Spring Boot 프로젝트 고군분투 3주차 리뷰 (0) | 2020.11.28 |
---|---|
[git] merge unrelated project (0) | 2020.11.21 |
[Spring] Spring Boot 프로젝트 고군분투 1주차 리뷰 (0) | 2020.11.19 |
[JWT] JWT 구성과 생성 과정 (0) | 2020.11.16 |
[Spring] Spring Boot 프로젝트 고군분투 1주차 (0) | 2020.11.11 |