如果您在github中推送了“样板”,那么您的工作流程是什么,并且您将从中创建另一个项目。
link-of-github-repo
link-of-ANOTHER-repo
如果有更好的方式,你能引用一些吗?
答案 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