Message ID | pull.809.git.1607260623935.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | t5310: stop expecting the default branch name `master` | expand |
"Johannes Schindelin via GitGitGadget" <gitgitgadget@gmail.com> writes: > This one goes on top of tb/pack-bitmap, and requires an update of > js/default-branch-name-tests-final-stretch (it no longer needs to > hard-code GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME in t5310). As the targetted topic is not in 'next' and marked with "Needs a bit of reshuffling?", I'd appreciate this patch to be also forwarded so that I do not have to worry about it myself. The same goes for <pull.809.git.1607260623935.gitgitgadget@gmail.com> which currently sits at the tip of tb/pack-bitmap. Thanks, both.
Junio C Hamano <gitster@pobox.com> writes: > "Johannes Schindelin via GitGitGadget" <gitgitgadget@gmail.com> > writes: > >> This one goes on top of tb/pack-bitmap, and requires an update of >> js/default-branch-name-tests-final-stretch (it no longer needs to >> hard-code GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME in t5310). > > As the targetted topic is not in 'next' and marked with "Needs a bit > of reshuffling?", I'd appreciate this patch to be also forwarded so > that I do not have to worry about it myself. > > The same goes for <pull.809.git.1607260623935.gitgitgadget@gmail.com> > which currently sits at the tip of tb/pack-bitmap. Oops--wrong branch info. I meant the patch in <pull.811.v2.git.1607354380671.gitgitgadget@gmail.com> that is targetted for the "git diff" stuff. > > Thanks, both.
On Mon, Dec 07, 2020 at 10:35:48AM -0800, Junio C Hamano wrote: > "Johannes Schindelin via GitGitGadget" <gitgitgadget@gmail.com> > writes: > > > This one goes on top of tb/pack-bitmap, and requires an update of > > js/default-branch-name-tests-final-stretch (it no longer needs to > > hard-code GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME in t5310). > > As the targetted topic is not in 'next' and marked with "Needs a bit > of reshuffling?", I'd appreciate this patch to be also forwarded so > that I do not have to worry about it myself. Ah, sorry that I missed this before sending out v3. I was hoping that the fixup would be limited to one patch, but this needs to be either spread across multiple patches, or applied at the end. Since I already sent v3, how do you want to handle this? Thanks, Taylor
Taylor Blau <me@ttaylorr.com> writes: > On Mon, Dec 07, 2020 at 10:35:48AM -0800, Junio C Hamano wrote: >> "Johannes Schindelin via GitGitGadget" <gitgitgadget@gmail.com> >> writes: >> >> > This one goes on top of tb/pack-bitmap, and requires an update of >> > js/default-branch-name-tests-final-stretch (it no longer needs to >> > hard-code GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME in t5310). >> >> As the targetted topic is not in 'next' and marked with "Needs a bit >> of reshuffling?", I'd appreciate this patch to be also forwarded so >> that I do not have to worry about it myself. > > Ah, sorry that I missed this before sending out v3. I was hoping that > the fixup would be limited to one patch, but this needs to be either > spread across multiple patches, or applied at the end. > > Since I already sent v3, how do you want to handle this? As I have many other topics on the table to attend to, I can skip v3 and take v4 if it is not too much trouble to fix the issue at the source. Thanks.
On Tue, Dec 08, 2020 at 01:13:35PM -0800, Junio C Hamano wrote: > Taylor Blau <me@ttaylorr.com> writes: > > > On Mon, Dec 07, 2020 at 10:35:48AM -0800, Junio C Hamano wrote: > >> "Johannes Schindelin via GitGitGadget" <gitgitgadget@gmail.com> > >> writes: > >> > >> > This one goes on top of tb/pack-bitmap, and requires an update of > >> > js/default-branch-name-tests-final-stretch (it no longer needs to > >> > hard-code GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME in t5310). > >> > >> As the targetted topic is not in 'next' and marked with "Needs a bit > >> of reshuffling?", I'd appreciate this patch to be also forwarded so > >> that I do not have to worry about it myself. > > > > Ah, sorry that I missed this before sending out v3. I was hoping that > > the fixup would be limited to one patch, but this needs to be either > > spread across multiple patches, or applied at the end. > > > > Since I already sent v3, how do you want to handle this? > > As I have many other topics on the table to attend to, I can skip v3 > and take v4 if it is not too much trouble to fix the issue at the > source. Thanks. No problem at all. Your instructions were spot on (4/24 and 15/24 needed adjusting, as well as the later patches which could no longer be applied after modifying those two). Checking my work against upstream, I can see that the only diff lines which mention "master" are removals: $ git diff @{u}.. | grep master - git checkout master && - bitmaptip=$(git rev-parse master) && - git rev-list --count other...master >expect && - git rev-list --use-bitmap-index --count other...master >actual && - git --git-dir=clone.git fetch origin master:master && - git --git-dir=clone.git fetch origin master:master && and spot checking the inter-diff between what I have and what Johannes posted I can see that they are the same. I've added some Helped-by lines in the relevant patches to indicate where the suggestions came from. v4 coming shortly... Thanks, Taylor
Hi Taylor, On Tue, 8 Dec 2020, Taylor Blau wrote: > On Tue, Dec 08, 2020 at 01:13:35PM -0800, Junio C Hamano wrote: > > Taylor Blau <me@ttaylorr.com> writes: > > > > > On Mon, Dec 07, 2020 at 10:35:48AM -0800, Junio C Hamano wrote: > > >> "Johannes Schindelin via GitGitGadget" <gitgitgadget@gmail.com> > > >> writes: > > >> > > >> > This one goes on top of tb/pack-bitmap, and requires an update of > > >> > js/default-branch-name-tests-final-stretch (it no longer needs to > > >> > hard-code GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME in t5310). > > >> > > >> As the targetted topic is not in 'next' and marked with "Needs a bit > > >> of reshuffling?", I'd appreciate this patch to be also forwarded so > > >> that I do not have to worry about it myself. > > > > > > Ah, sorry that I missed this before sending out v3. I was hoping that > > > the fixup would be limited to one patch, but this needs to be either > > > spread across multiple patches, or applied at the end. > > > > > > Since I already sent v3, how do you want to handle this? > > > > As I have many other topics on the table to attend to, I can skip v3 > > and take v4 if it is not too much trouble to fix the issue at the > > source. Thanks. > > No problem at all. Your instructions were spot on (4/24 and 15/24 needed > adjusting, as well as the later patches which could no longer be > applied after modifying those two). > > Checking my work against upstream, I can see that the only diff lines > which mention "master" are removals: > > $ git diff @{u}.. | grep master > - git checkout master && > - bitmaptip=$(git rev-parse master) && > - git rev-list --count other...master >expect && > - git rev-list --use-bitmap-index --count other...master >actual && > - git --git-dir=clone.git fetch origin master:master && > - git --git-dir=clone.git fetch origin master:master && > > and spot checking the inter-diff between what I have and what Johannes > posted I can see that they are the same. I've added some Helped-by lines > in the relevant patches to indicate where the suggestions came from. > > v4 coming shortly... Thank you so much for picking this up! Ciao, Dscho
diff --git a/t/t5310-pack-bitmaps.sh b/t/t5310-pack-bitmaps.sh index a83e7a93fbc..55b2cde378b 100755 --- a/t/t5310-pack-bitmaps.sh +++ b/t/t5310-pack-bitmaps.sh @@ -23,12 +23,12 @@ has_any () { # To ensure the logic for "maximal commits" is exercised, make # the repository a bit more complicated. # -# other master +# other second # * * # (99 commits) (99 commits) # * * # |\ /| -# | * octo-other octo-master * | +# | * octo-other octo-second * | # |/|\_________ ____________/|\| # | \ \/ __________/ | # | | ________/\ / | @@ -48,10 +48,10 @@ has_any () { # # The important part for the maximal commit algorithm is how # the bitmasks are extended. Assuming starting bit positions -# for master (bit 0) and other (bit 1), the bitmasks at the +# for second (bit 0) and other (bit 1), the bitmasks at the # end should be: # -# master: 1 (maximal, selected) +# second: 1 (maximal, selected) # other: 01 (maximal, selected) # (base): 11 (maximal) # @@ -64,6 +64,7 @@ has_any () { test_expect_success 'setup repo with moderate-sized history' ' test_commit_bulk --id=file 10 && + git branch -M second && git checkout -b other HEAD~5 && test_commit_bulk --id=side 10 && @@ -71,13 +72,13 @@ test_expect_success 'setup repo with moderate-sized history' ' # ambiguous merge-bases git checkout -b merge-left other~2 && - git merge master~2 -m "merge-left" && + git merge second~2 -m "merge-left" && - git checkout -b merge-right master~1 && + git checkout -b merge-right second~1 && git merge other~1 -m "merge-right" && - git checkout -b octo-master master && - git merge merge-left merge-right -m "octopus-master" && + git checkout -b octo-second second && + git merge merge-left merge-right -m "octopus-second" && git checkout -b octo-other other && git merge merge-left merge-right -m "octopus-other" && @@ -85,24 +86,24 @@ test_expect_success 'setup repo with moderate-sized history' ' git checkout other && git merge octo-other -m "pull octopus" && - git checkout master && - git merge octo-master -m "pull octopus" && + git checkout second && + git merge octo-second -m "pull octopus" && # Remove these branches so they are not selected # as bitmap tips git branch -D merge-left && git branch -D merge-right && git branch -D octo-other && - git branch -D octo-master && + git branch -D octo-second && # add padding to make these merges less interesting # and avoid having them selected for bitmaps test_commit_bulk --id=file 100 && git checkout other && test_commit_bulk --id=side 100 && - git checkout master && + git checkout second && - bitmaptip=$(git rev-parse master) && + bitmaptip=$(git rev-parse second) && blob=$(echo tagged-blob | git hash-object -w --stdin) && git tag tagged-blob $blob && git config repack.writebitmaps true @@ -141,8 +142,8 @@ rev_list_tests_head () { ' test_expect_success "counting non-linear history ($state, $branch)" ' - git rev-list --count other...master >expect && - git rev-list --use-bitmap-index --count other...master >actual && + git rev-list --count other...second >expect && + git rev-list --use-bitmap-index --count other...second >actual && test_cmp expect actual ' @@ -179,7 +180,7 @@ rev_list_tests_head () { rev_list_tests () { state=$1 - for branch in "master" "other" + for branch in "second" "other" do rev_list_tests_head done @@ -215,7 +216,7 @@ test_expect_success 'setup further non-bitmapped commits' ' rev_list_tests 'partial bitmap' test_expect_success 'fetch (partial bitmap)' ' - git --git-dir=clone.git fetch origin master:master && + git --git-dir=clone.git fetch origin second:second && git rev-parse HEAD >expect && git --git-dir=clone.git rev-parse HEAD >actual && test_cmp expect actual @@ -317,7 +318,7 @@ test_expect_success 'full repack, reusing previous bitmaps' ' ' test_expect_success 'fetch (full bitmap)' ' - git --git-dir=clone.git fetch origin master:master && + git --git-dir=clone.git fetch origin second:second && git rev-parse HEAD >expect && git --git-dir=clone.git rev-parse HEAD >actual && test_cmp expect actual