英文:
How can combine different repositories in gitHub?
问题
Sure, here's the translation:
我有不同的代码仓库:
- A- Java Spring 代码仓库
- B- React 代码仓库
我可以将这些代码仓库合并成一个,像这样:
- Java Spring 文件夹
- React 文件夹
我在互联网上搜索了一下,但还是没有弄清楚。
英文:
I have a different repositories:
- A- Java Spring repository
- B- React repository
Can ı combine this repositories in one repository like this:
- Java Spring Folder
- React Folder
I searched on the internet and couldn't figure it out.
答案1
得分: 1
你可以选择以下方式之一:
- 创建一个第三个存储库,并将第一个和第二个存储库作为子模块引用。
- 或者将一个存储库的提交导入到另一个存储库中(或者将两者都导入到新存储库中),使用
git filter-repo
。
英文:
You can either:
-
create a third repository and reference the first two as submodules
-
or import commits of one repository into the other (or import both into a new one), using
git filter-repo
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论