본문 바로가기

Web

fork 해온 repository 잔디 심는 방법

1.  새로운 레포지토리를 만든다.

 

2. 복사하고자 하는 repository를 bare clone한다.

// git clone --bare [fork한 저장소 주소]
git clone --bare https://github.com/yg1110/pilot-react.git

bare clone을 진행할경우 [fork한 저장소 이름].git라는 이름으로 폴더가 생깁니다.

 

3. 새로운 repository Mirror-push

// cd [fork한 저장소 이름].git
// git push --mirror [새로운 저장소 주소]
cd pilot-react.git
git push --mirror https://github.com/yg1110/pilot-react-login.git

 

'Web' 카테고리의 다른 글

scss line-clamp module  (0) 2024.08.28
리액트 네이티브 명령어  (0) 2022.08.01
this와 binding  (0) 2022.03.19
Event Loop  (0) 2022.03.19
Scope  (0) 2022.03.19