Skip to content

Commit

Permalink
clone: the given repository dir should be relative to $PWD
Browse files Browse the repository at this point in the history
the repository argument for git-clone should be relative to $PWD
instead of the given target directory.  The old behavior gave us
surprising success and you need a few minute to know why it worked.

GIT_DIR is already exported so no need to cd into $D. And this makes
$PWD for git-fetch-pack, which is the actual command to take the given
repository dir, the same as git-clone.

Signed-off-by: Yasushi SHOJI <yashi@atmark-techno.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Yasushi SHOJI authored and Junio C Hamano committed Oct 15, 2006
1 parent d988b82 commit ced78b3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion git-clone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ yes,yes)
fi
;;
*)
cd "$D" && case "$upload_pack" in
case "$upload_pack" in
'') git-fetch-pack --all -k $quiet "$repo" ;;
*) git-fetch-pack --all -k $quiet "$upload_pack" "$repo" ;;
esac >"$GIT_DIR/CLONE_HEAD" || {
Expand Down
6 changes: 6 additions & 0 deletions t/t5600-clone-fail-cleanup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ test_create_repo foo
# clone doesn't like it if there is no HEAD. Is that a bug?
(cd foo && touch file && git add file && git commit -m 'add file' >/dev/null 2>&1)

# source repository given to git-clone should be relative to the
# current path not to the target dir
test_expect_failure \
'clone of non-existent (relative to $PWD) source should fail' \
'git-clone ../foo baz'

test_expect_success \
'clone should work now that source exists' \
'git-clone foo bar'
Expand Down

0 comments on commit ced78b3

Please sign in to comment.