관리 메뉴

피터의 개발이야기

[Github] Repository 합치기 본문

Programming/GitHub

[Github] Repository 합치기

기록하는 백앤드개발자 2024. 2. 13. 13:11
반응형

ㅁ 들어가며

 GitHub의 Repository를 그룹주체별로 정리를 하게 되었다. 새로운 Group Repository에 기존 Repository(이후 Repo)를 복사하는 과정을 정리하였다.

 

ㅁ 작업 내용

이전 Repo: skaffold-spring-boot

신규 Repo: Spring 그룹 주제인 spring-projects

 

# 그룹 Repo 이동
$ cd ~/git/spring-projects

# Git 이력을 subtree로 추가
$ git subtree --prefix=skaffold-spring-boot \  # 이전 레포지토리명
  https://github.com/peterica/skaffold-spring-boot.git \ # 이전 레포지토리 주소
  master # 브런치명
  
# Remote push
$ git push origin HEAD:master --force

 

ㅁ 함께 보면 좋은 사이트

[Github] Repository들 깔끔하게 하나로 합치기

반응형
Comments