我最近在創建新項目時開始使用Git,直到那時我只是通過壓縮每個人和每個人的源代碼來定期備份項目。所以我現在每個(舊)項目都有幾個DD.MM.YYYY.zip文件 - 每個項目只有一個分支。將現有項目遷移到git
現在我想擺脫所有這些.zip文件並將所有內容移植到Git。這是我想到的:
Create a new repository.
git init
Copy the files from the oldest .zip file into the repository.
git add ...
git commit ...
Delete the files copied from the oldest .zip file.
Copy the files from the second oldest .zip file into the repository.
git add ...
git commit ...
Delete the files copied from the second oldest .zip file.
...
這是否正常工作?有沒有更好的解決方案來實現我想要的?
附加:
對於一些(舊)項目,我開始用最新的來源和持續編程一個Git倉庫。對於這些項目,還有一些DD.MM.YYYY.zip文件正在放置 - 有什麼方法可以對項目的開始執行提交嗎? (可能是一個愚蠢的問題,但隨時給我建議別的東西。)
關於附加部分:我創建了一個新的(孤兒)分支,稱爲(例如)'legacy',然後在其上重新設置'master'?我平時的工作分支是不是被稱爲「遺產」? –