author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | |
Sat, 19 Nov 2011 19:38:54 +0000 (19:38 +0000) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 21 Nov 2011 03:24:24 +0000 (19:24 -0800) | ||
commit | 3a81f33c526a09b3ae22b01d56c7ab921d19c382 | |
tree | a190df3a94fd7599db3ab965e24bff1836242558 | tree | snapshot |
parent | f56ef114eeefee755f422e6cbef2d83974cb90f1 | commit | diff |
t5501-*.sh: Fix url passed to clone in setup test
In particular, the url passed to git-clone has an extra '/' given
after the 'file://' schema prefix, thus:
git clone --reference=original "file:///$(pwd)/original one
Once the prefix is removed, the remainder of the url looks something
like "//home/ramsay/git/t/...", which is then interpreted as an
network path. This then results in a "Permission denied" error, like
so:
ramsay $ ls //home
ls: cannot access //home: No such host or network path
ramsay $ ls //home/ramsay
ls: cannot access //home/ramsay: Permission denied
ramsay $
In order to fix the problem, we simply remove the extraneous '/'
character from the url.
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
In particular, the url passed to git-clone has an extra '/' given
after the 'file://' schema prefix, thus:
git clone --reference=original "file:///$(pwd)/original one
Once the prefix is removed, the remainder of the url looks something
like "//home/ramsay/git/t/...", which is then interpreted as an
network path. This then results in a "Permission denied" error, like
so:
ramsay $ ls //home
ls: cannot access //home: No such host or network path
ramsay $ ls //home/ramsay
ls: cannot access //home/ramsay: Permission denied
ramsay $
In order to fix the problem, we simply remove the extraneous '/'
character from the url.
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5501-fetch-push-alternates.sh | diff | blob | history |