On Thu, Jun 30 2022, Johannes Schindelin wrote: > Hi Junio, > > On Tue, 28 Jun 2022, Junio C Hamano wrote: > >> Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> writes: >> >> >> +test_expect_success 'setup: prepare a repository with commit-graph contains the commit' ' >> >> + git init with-commit-graph && >> >> + echo "$(pwd)/with-commit/.git/objects" \ >> >> + >with-commit-graph/.git/objects/info/alternates && >> > >> > nit: you can use $PWD instead of $(pwd). >> >> We can, and it would not make any difference on non-Windows. >> >> But which one should we use to cater to Windows? $(pwd) is a full >> path in Windows notation "C:\Program Files\Git\..." while $PWD is >> MSYS style "/C/Program Files/Git/..." or something like that, IIRC? > > Indeed, and since the `alternates` file is supposed to be read by > `git.exe`, a non-MSYS program, the original was good, and the nit > suggested the incorrect form. I looked at t5615-alternate-env.sh which does the equivalent of: GIT_ALTERNATE_OBJECT_DIRECTORIES="$PWD/one.git/objects:$PWD/two.git/objects" \ git cat-file [...] We run that test on all our platforms, does the $PWD form work in the environment variable, but not when we write it to the "alternates" file? Or is there some other subtlety there that I'm missing?