หากคุณต้องการรักษาสาขาที่มีอยู่และสร้างประวัติศาสตร์นี่เป็นวิธีหนึ่งที่ใช้ได้ผลสำหรับฉัน
git clone --mirror https://github.com/account/repo.git cloned-repo
cd cloned-repo
git push --mirror {URL of new (empty) repo}
# at this point only remote cloned-repo is correct, local has auto-generated repo structure with folders such as "branches" or "refs"
cd ..
rm -rf cloned-repo
git clone {URL of new (empty) repo}
# only now will you see the expected user-generated contents in local cloned-repo folder
# note: all non-master branches are avaialable, but git branch will not show them until you git checkout each of them
# to automatically checkout all remote branches use this loop:
for b in `git branch -r | grep -v -- '->'`; do git branch --track ${b##origin/} $b; done
ตอนนี้สมมติว่าคุณต้องการให้ repos ต้นทางและปลายทางซิงค์กันเป็นระยะเวลาหนึ่ง ตัวอย่างเช่นยังคงมีกิจกรรมภายใน repo ระยะไกลปัจจุบันที่คุณต้องการนำไปยัง repo ใหม่ / ทดแทน
git clone -o old https://github.com/account/repo.git my-repo
cd my-repo
git remote add new {URL of new repo}
หากต้องการดึงการอัปเดตล่าสุดลง (สมมติว่าคุณไม่มีการเปลี่ยนแปลงในเครื่อง):
git checkout {branch(es) of interest}
git pull old
git push --all new
หมายเหตุ: ฉันยังไม่ได้ใช้โมดูลย่อยดังนั้นฉันไม่รู้ว่าจะต้องมีขั้นตอนเพิ่มเติมอะไรบ้างหากคุณมี