版本控制从样板文件克隆的应用程序

时间:2014-11-16 00:38:23

标签: git github workflow

如果您在github中推送了“样板”,那么您的工作流程是什么,并且您将从中创建另一个项目。

你会克隆它并改变遥控器吗?:

  1. git clone link-of-github-repo
  2. git remote set-url origin link-of-ANOTHER-repo
  3. 执行特定于应用的更改,例如更改自述文件,package.json等。
  4. 提交和推送?
  5. 如果有更好的方式,你能引用一些吗?

1 个答案:

答案 0 :(得分:1)

听起来你想要在GitHub上完全复制存储库而不将其标记为fork。 GitHub在他们的帮助中记录了如何duplicate a repository

  

要完全复制,您需要同时执行裸克隆和镜像推送。

     

打开命令行,然后输入以下命令:

git clone --bare https://github.com/exampleuser/old-repository.git
# Make a bare clone of the repository

cd old-repository.git
git push --mirror https://github.com/exampleuser/new-repository.git
# Mirror-push to the new repository

cd ..
rm -rf old-repository.git
# Remove our temporary local repository