Skip to content

Commit

Permalink
Specify a value for allowrefinwant
Browse files Browse the repository at this point in the history
This specifies the missing value, which seems intended to be
`true`, for `-c uploadpack.allowRefInWant` for `git daemon`.
  • Loading branch information
EliahKagan committed Dec 17, 2024
1 parent d0ca0ba commit 9686a09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function launch-git-daemon() {
printenv | grep ^GIT_CONFIG_
echo 'GIT_CONFIG_* vars END'
) >&2
git -c uploadpack.allowrefinwant daemon --verbose --base-path=. --export-all --user-path &>/dev/null &
git -c uploadpack.allowRefInWant=true daemon --verbose --base-path=. --export-all --user-path &>/dev/null &
daemon_pid=$!
while ! nc -z localhost "$port"; do
sleep 0.1
Expand Down

0 comments on commit 9686a09

Please sign in to comment.