Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,我的机器上有一个克隆的 repo。(文件夹 A)。而且我有另一个文件夹,其中更新了我的文件,但它不是 git repo。(文件夹 B)。我想将文件夹 B 中的所有文件和文件夹与文件夹 A(这是我的克隆仓库)合并。其余的很简单,git add只需git commit和git push。谢谢!
git add
git commit
git push
我这样做
aa=/path/to/folder-a bb=/path/to/folder-b cd $aa git rm -qr . cp -r $bb/. . git add -A git commit git push
参考