我有两个版本的源目录
/d1
由git跟踪,但已过时
/d2
除了最新的
将/d2
合并到/d1
的最佳方式是什么?
答案 0 :(得分: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?"