기존 원격 저장소 URL을 새로 만든 저장소 URL로 변경하는 방법
입문
이 글은 기존 원격 저장소에서 GitClone을 실행할 때 새로 만든 저장소 URL로 변경하는 방법을 설명합니다.
예를 들어 다른 사람이 공부하고 코딩하기 위해 만든 저장소를 자신의 방식대로 만지작거릴 생각은 없으세요?
이렇게 복제해서 현지에서 놀아도 되는데 가까스로 미루고 이력서를 버전 관리하고 싶어요.
만약 이 보도가 조금이라도 도움이 된다면 나는 매우 기쁠 것이다.
목표 독자
새 저장소 만들기
먼저 GitHub 페이지에서
New Repository
를 선택하여 새 저장소를 만듭니다.Repository name
에 저장소 이름을 입력합니다.문제가 없으면 창설 자료 파일 라이브러리를 누르십시오.
push an existing repository from the command line
의 명령을 사용하기 때문에 브라우저를 열려 있는 상태로 유지합니다.# 新規作成したリモートリポジトリのURL
git remote add origin [email protected]:yuta-ushijima/sample.git
git push -u origin master
로컬 작업
여기서부터 로컬에서 터미널을 사용하는 작업입니다.
먼저 다음 명령으로 현재 항목의 원격 정보를 확인합니다.
git remote -v
결과는 다음과 같습니다.origin [email protected]:StephenGrider/ReduxSimpleStarter.git (fetch)
origin [email protected]:StephenGrider/ReduxSimpleStarter.git (push)
위의 정보를 새 저장소의 원격 정보로 덮어씁니다.git remote set-url origin [email protected]:yuta-ushijima/sample.git
다시 git remote -v
개작했는지 확인해 보세요.git remote -v
결과는 다음과 같습니다.
origin [email protected]:yuta-ushijima/sample.git (fetch)
origin [email protected]:yuta-ushijima/sample.git (push)
이 상태git status
에서 차점을 확인하세요.git status
뭐가 달라야 되는데?어떤 사람들은 무대에 오르기 전에,commit 전에도 있을 수 있다.On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: package-lock.json
no changes added to commit (use "git add" and/or "git commit -a")
그리고 바로push를 하면 브라우저 화면을 업데이트하면 아까push의commit를 반영할 것입니다.
Reference
이 문제에 관하여(기존 원격 저장소 URL을 새로 만든 저장소 URL로 변경하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yuta-ushijima/items/6686073f6b50bc5b0782텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)