이미 존재하는 원격 저장소를 로컬 저장소로 유지하는 방법

1919 단어 GitHub

지원


배운 지식은 대부분 키타가 아니라 이곳에 집중된다.

입문


폴더에 로컬 저장소 두 개를 넣고 싶습니다.(일반)
git clone 원격 저장소를 직접 가져오기로 했습니다.

이미지 참조 소스: Samurai bloghttps://www.sejuku.net/blog/71436

(1) 로컬 저장소가 있는 폴더 생성 및 이동

$ cd Git_LocalRepositories

(2) 각 원격 저장소를 로컬 저장소로 폴더에 복사


원격 저장소의 주소를 지정합니다.
$ git clone [email protected]:Hiroki-IT/Symfony2_Nyumon.git
Cloning into 'Symfony2_Nyumon.git'...
remote: Enumerating objects: 6, done.
remote: Counting objects: 100% (6/6), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 6 (delta 0), reused 6 (delta 0), pack-reused 0
Receiving objects: 100% (6/6), done.

//成功
다른 원격 저장소도 마찬가지다.
$ git clone [email protected]:Hiroki-IT/makingSamplingMap.git
Cloning into 'makingSamplingMap'...
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.

//成功

참조 링크

  • https://techacademy.jp/magazine/6235#sec4_1_4
  • https://www.sejuku.net/blog/71436
  • 좋은 웹페이지 즐겨찾기