git 从分支中删除某些文件的提交历史记录

发布于 2024-09-18 09:47:31 字数 260 浏览 3 评论 0原文

我已经开始开发一些小项目,并且没有使用功能分支。现在我想发布这个项目的一小部分,因为它足够稳定,可以发布。我想做的是:

创建一个“发布”分支,仅包含项目这部分的提交,并理想地从该分支的历史记录中完全删除其他部分。

有什么办法可以做到这一点吗?

更新

我想我忘记了一个重要信息:然后我想将发布分支推送到例如:github或其他一些开放托管平台。因此,我想删除已删除文件的历史记录。

非常感谢!

i've started development of some little project and did not use feature branches. now i would like to release a little part of this project, because it's stable enough to get released. what i would like to do is:

create a "release" branch with only the commits of this part of the project and ideally remove the other parts completly from the history of this branch.

is there any way to do this?

UPDATE

i think i forgot an important information: i would then like to push the release branch to e.g.: github or some other open hosting platform. because of this, i would like to have the history of the deleted files removed.

thanks very much!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

将军与妓 2024-09-25 09:47:32

从历史记录中删除文件意味着:

因此,如果您已经在 GitHub 上发布了存储库,则需要计划这样的操作(推送新历史记录),以便您的协作者能够将更改的历史记录考虑在内(如 从上游 REBASE 恢复git rebase 手册页)。

Removing files from the history means:

So if you have already published your repo on GitHub, such an operation (pushing a new history) needs to be planned in order for your collaborators to be able to take the changed history in to account (like in RECOVERING FROM UPSTREAM REBASE or the git rebase man page).

究竟谁懂我的在乎 2024-09-25 09:47:32

您可以创建一个分支并删除随后不需要的每个文件。删除的文件在其他分支中仍然可用。

You can create a branch and remove every file which is unneeded afterwards. The removed files will be still available in the other branches.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文