我创建了一个文件夹common
,里面有很多源文件和文件夹。
现在我想将common
文件夹移动到include
文件夹中,使它看起来像include/common
我试过这些:
git add include
git mv common/ include/
但是它会因为这个错误而失败
致命:坏源,源=myrepo/common,目的地=myrepo/include
我尝试了git mv common/ include/common
,但我得到相同的错误
你知道怎么做到吗?