我想將所有文件從Git Repo A移動到Git Repo B,並且具有完整的歷史記錄。 Git B已經包含另一個項目文件。我嘗試了幾種方式,如將Git repo A移動到Git repo B(非空),具有完整的歷史記錄
How to move files from one git repo to another (not a clone), preserving history
我試圖通過終端執行的所有提交。但我在執行git filter-branch --subdirectory-filter muDirectory -- --all
時得到"git filter-branch fatal:myDirectory/: 'myDirectory' is outside repository Could not get the commits"
。
我需要一步一步的過程將所有文件從一個回購到另一個的詳細指導。希望有任何幫助,提前致謝。
作爲將回購變爲另一個非空回購的結果,您期望什麼? – Amadan
我的回購B已經有Proj1和Proj2。現在我希望將RepoA作爲Proj3移入RepoB,並提交來自RepoA的所有提交歷史記錄。 –