如何在Github上将一个存储库添加到另一个存储库?

时间:2019-03-13 11:31:33

标签: android git github repository

如何在Github上将一个存储库添加到另一个存储库?我有一个项目工作区XXX,而我在其他地方有自己创建的存储库YYY,因此我想将该存储库添加到创建的空白存储库中。

2 个答案:

答案 0 :(得分:0)

这是我想到的简单方法

  1. 克隆xxx存储库
  2. 打开它并删除.git文件夹
  3. 打开终端并输入git init
  4. 键入命令git remote add origin GIT_URL_OF_YYY
  5. 添加,提交和推送

答案 1 :(得分:0)

您可以通过两个简单的步骤来完成此操作:

  1. 克隆{current}
  2. push {new}

A。 clone {当前} git clone

  1. 创建本地目录
  2. 打开终端
  3. git clone ssh://john@example.com/path/to/my-project.git
  4. cd my-project

B。 push {新} git push <remote> <branch>

  1. git remote add origin example.com/path/to/my-project.git
  2. git push origin master

    • 您可能会遇到repo {s}计时错误,因此..您可能需要提前推送
    • 您可能还会遇到其他问题,那么您将只运行git add . git commit -m "first lanuch" git push -u origin master