Message ID | f3f084adfa616a7bae7e7c94644f65a36f38652b.1647019492.git.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | rebase: update HEAD when is an oid | expand |
"John Cai via GitGitGadget" <gitgitgadget@gmail.com> writes: > From: John Cai <johncai86@gmail.com> > > To prepare for the next commit that will test rebase with oids instead > of branch names, update the rebase setup test to add a couple of tags we > can use. This uses the test_commit helper so we can replace some lines > that add a commit manually. OK. > test_expect_success 'prepare repository with topic branches' ' > - git config core.logAllRefUpdates true && This lossage is not explained. I do not know if we actually make use of the reflog in the tests, though. > - echo First >A && > - git update-index --add A && > - git commit -m "Add A." && > + test_commit "Add A." A First First && > git checkout -b force-3way && > echo Dummy >Y && > git update-index --add Y && > @@ -32,9 +29,7 @@ test_expect_success 'prepare repository with topic branches' ' > git mv A D/A && > git commit -m "Move A." && > git checkout -b my-topic-branch main && > - echo Second >B && > - git update-index --add B && > - git commit -m "Add B." && > + test_commit "Add B." B Second Second && > git checkout -f main && > echo Third >>A && > git update-index A &&
On 13/03/2022 07:50, Junio C Hamano wrote: > "John Cai via GitGitGadget" <gitgitgadget@gmail.com> writes: > >> From: John Cai <johncai86@gmail.com> >> >> To prepare for the next commit that will test rebase with oids instead >> of branch names, update the rebase setup test to add a couple of tags we >> can use. This uses the test_commit helper so we can replace some lines >> that add a commit manually. > > OK. > >> test_expect_success 'prepare repository with topic branches' ' >> - git config core.logAllRefUpdates true && > > This lossage is not explained. I do not know if we actually make > use of the reflog in the tests, though. It is the default these days so we don't need to waste a process setting it here. Best Wishes Phillip
Phillip Wood <phillip.wood123@gmail.com> writes: > On 13/03/2022 07:50, Junio C Hamano wrote: >> "John Cai via GitGitGadget" <gitgitgadget@gmail.com> writes: >> >>> From: John Cai <johncai86@gmail.com> >>> >>> To prepare for the next commit that will test rebase with oids instead >>> of branch names, update the rebase setup test to add a couple of tags we >>> can use. This uses the test_commit helper so we can replace some lines >>> that add a commit manually. >> OK. >> >>> test_expect_success 'prepare repository with topic branches' ' >>> - git config core.logAllRefUpdates true && >> This lossage is not explained. I do not know if we actually make >> use of the reflog in the tests, though. > > It is the default these days so we don't need to waste a process > setting it here. I said "not explained" in the log message. I didn't ask anybody to explain it to me or to readers on the list. Thanks.
diff --git a/t/t3400-rebase.sh b/t/t3400-rebase.sh index 71b1735e1dd..0643d015255 100755 --- a/t/t3400-rebase.sh +++ b/t/t3400-rebase.sh @@ -18,10 +18,7 @@ GIT_AUTHOR_EMAIL=bogus@email@address export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL test_expect_success 'prepare repository with topic branches' ' - git config core.logAllRefUpdates true && - echo First >A && - git update-index --add A && - git commit -m "Add A." && + test_commit "Add A." A First First && git checkout -b force-3way && echo Dummy >Y && git update-index --add Y && @@ -32,9 +29,7 @@ test_expect_success 'prepare repository with topic branches' ' git mv A D/A && git commit -m "Move A." && git checkout -b my-topic-branch main && - echo Second >B && - git update-index --add B && - git commit -m "Add B." && + test_commit "Add B." B Second Second && git checkout -f main && echo Third >>A && git update-index A &&