From f1237647c2f2ea2d037fbe3b24f7d1ce169287fa Mon Sep 17 00:00:00 2001 From: Eli Kogan-Wang Date: Tue, 29 Oct 2024 10:25:49 +0100 Subject: [PATCH] Add changelog --- ...029_102331_elikowa_git_bundle_do_not_fail_after_rebase.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CHANGES.d/20241029_102331_elikowa_git_bundle_do_not_fail_after_rebase.md diff --git a/CHANGES.d/20241029_102331_elikowa_git_bundle_do_not_fail_after_rebase.md b/CHANGES.d/20241029_102331_elikowa_git_bundle_do_not_fail_after_rebase.md new file mode 100644 index 00000000..156d0a04 --- /dev/null +++ b/CHANGES.d/20241029_102331_elikowa_git_bundle_do_not_fail_after_rebase.md @@ -0,0 +1,5 @@ +- When shipping a repository to the remote host using `git-bundle`, previously, when + the history of the repository was rewritten, the bundle would fail to be created, due + to the remote `HEAD` not being a predecessor of the local `HEAD`. This has been fixed + by creating the bundle using the whole branch history, instead of just the changes between + remote `HEAD` and branch `HEAD` when the remote `HEAD` is not a part of the branch.