1. Git Repository 그대로 옮기기

A : 이동할 원본 Repogitory

B : 새로 만든 이동될 Repogitory

$ git clone --mirror ${A Repogitory URl}.git
$		### EX) git clone --mirror http://192.168.1.11:9988/test/test.git
$ cd ${A Repogitory name}
$ git remote set-url --push origin ${B Repogitory URL}.git
$ git push --mirror

 

proxy error 발생 시

 

$ git config --global --unset http.proxy
$ git config --global http.sslVerify false

 

 

2. 여러개의 Git Repository를 하나로 통합 방법

A, B : 원본 Repogitory 

M : 새로 만든 이동될 Repogitory

$ git clone ${M Repogitory URl}
$ cd ${M Repogitory name}
$ git remote add ${brach_name} ${A Repogitory URl}
$		### EX) git remote add repo_A http://192.168.1.11:9988/test/test.git
$ git fetch ${brach_name}
$ git merge --allow-unrelated-histories ${brach_name}/master
$ git push


$ git remote add ${brach_name} ${B Repogitory URl}
$		### EX) git remote add repo_B http://192.168.1.11:9988/test/test.git
$ git fetch ${brach_name}
$ git merge --allow-unrelated-histories ${brach_name}/master
$ git push

계속해서 merge하면서 통합을 진행 하면 된다.

 

 * tags push

$ git push --tags
$ git push --all	#branch push

 

3. gitlab에서 data repogitories에서 Push Test

 

https://www.lesstif.com/gitbook/github-default-master-main-100205686.html

 

github default 브랜치명을 master 에서 main 으로 변경하기

local 에 저장소를 clone 한 경우 다음과 같이 기본 저장소 이름을 바꿔줘야 합니다. git branch -m master main git fetch origin git branch -u origin/main main BASH

www.lesstif.com

$ git remote -v			# 확인
$ git remote remove ${branch}	# remove
$ git remote add master {Repogitory URL}
$ git fetch master
$ git push --set-upstream master master --force
$ git push --tags

 

 

'Git' 카테고리의 다른 글

Git commit push 내용 변경  (0) 2022.04.29
유용한 Git 명령어 정리  (0) 2021.11.02

+ Recent posts