2011-02-15 143 views
2

我有兩個版本,其中合併未追蹤目錄到跟蹤目錄

/d1由git的跟蹤的源目錄,但過時的

/d2不被任何東西,但最先進的最新

跟蹤

/d2合併爲/d1的最佳方法是什麼?

回答

0

什麼說反對在d1上覆制d2然後創建一個新的提交對象? 只是確保你不覆蓋你的.git目錄。做備份是一個很好的練習

cp -aT d2 d1 
git status 
# shows lots of changed files 
git add -u # or git add -A depending if you want to add new files as well 
git commit -m "committing a whole lot of changes from my untracked directory. i wonder why it got untracked in the first place?" 
相關問題