我正在开发一个Magento项目,并且我将名为Magento2
init的目录作为git repo。但是,我经常使用Magento2/app/code/Vendor/Module
的回购,当我必须保存我的工作时,我会使用
git add app/code/Vendor/Module
然后提交。你可以猜到,远程回购的来源是app/code/Vendor/Module
。一个新项目即将开始,我希望将Module
作为现有项目的新git仓库。这是一种将远程仓库与旧仓库断开连接的方法,将其与新仓库连接并根据需要重写结构?
答案 0 :(得分:0)
这是将远程存储库与旧存储库断开连接的方法,将其与新存储库连接并根据需要重写结构吗?
是,
添加或更新git存储库的远程。
git remote add <new_name> <new_url>
git remote set-url <current name [origin?]> <new_url>
git remote -v