gpt4 book ai didi

git - 克隆样板后我应该如何继续构建应用程序?

转载 作者:太空狗 更新时间:2023-10-29 14:28:15 26 4
gpt4 key购买 nike

许多框架都提供种子或样板,可以克隆它们以快速启动新应用的开发。通常,食谱是这样的

Step 1: Clone our fancy boilerplate that extends the power of this super easy and advanced framework by incorporating the industry's best practices while decoupling the framework from the hindrances we all thought were needed, providing you the cleanest possible slate to start building your super app.

git clone https://github.com/user/magic-super-easy-and-advanced-framework-seed

Step 2: Download and build in some extra bloat that couldn't be bundled with the magic we used to create the boilerplate but nonetheless is required and used by the industry's best practices which you will therefore also need to use to make your app the most super

...

Step 3: Start building your super app, just like that!

Step 4 (optional): Profit

我认为所有这些样板说明都缺少的是删除样板的 git cruft 的步骤。如果我的新 super 应用程序没有样板文件的历史不是更好吗?克隆样板文件的正确方法是什么,但以干净的 git 历史记录和不引用样板文件的方式重新启动项目是什么?

请注意,与 git workflow - using one repo as the basis for another 不同,我不仅要删除对 git Remote 中样板存储库的引用,还要删除对样板存储库的所有引用和提交历史记录。

最佳答案

如果你想删除你的 git 历史记录,我能想到的最好的方法是执行以下操作。

rm -rf .git
git init
git add .
git commit -m "whatever"

这样您就可以清除旧的历史记录,确保没有臃肿的东西跟着您,并在您启动您的 super 应用时从您下载的内容开始。

关于git - 克隆样板后我应该如何继续构建应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23375008/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com