最近公司因專案拆分,要將原有程式碼移植到新的 Git
專案組。剛開始是想把程式碼直接複製過去,但提交的歷史資訊和原有分支就會丟失。於是網上找了下方法具體操作了一次可行,這裡就記錄一下。
git clone --mirror https://github.com/xxxxxxx/oldProject.git
cd oldProject.git
git remote set-url –-push origin https://github.com/xxxxxxx/newProject.git
git push –-mirror
簡單的幾個命令就搞定,Git 很強。
本作品採用《CC 協議》,轉載必須註明作者和本文連結