9
git命令将文件夹移动到另一个
我创建了一个common包含一堆源文件和文件夹的文件夹。 现在我想将common文件夹移到该include文件夹中include/common 我尝试了这些: git add include git mv common/ include/ 但由于此错误而失败 致命:错误的来源,来源= myrepo /常见,目的地= myrepo / include 我尝试过,git mv common/ include/common但遇到相同的错误 任何想法如何实现这一目标?
193
git