2014-06-25 44 views

回答

6

你可以把git command--work-tree選擇的優勢:

git --work-tree=/path/to/cvs/project --git-dir==/path/to/your/repo/.git status 
git --work-tree=/path/to/cvs/project --git-dir==/path/to/your/repo/.git add . 

你會考慮你的CVS的內容爲你的git的回購工作樹。

如果你直接在你的git倉庫中,那麼你不需要--git-dir選項。

cd /path/to/your/repo/ 
git --work-tree=/path/to/cvs/project status 
git --work-tree=/path/to/cvs/project add . 
相關問題