mirror of
https://github.com/git/git.git
synced 2024-10-30 05:47:53 +01:00
git-clone: Allow cloning into directories other than child of current dir.
This patch adds -p to mkdir and an explicit check to see if the target directory exists (since mkdir -p doesn't throw an error if it does). Signed-off-by: Andreas Ericsson <ae@op5.se> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
0879aa2870
commit
7f10f7c4e4
1 changed files with 2 additions and 1 deletions
|
@ -98,7 +98,8 @@ fi
|
|||
dir="$2"
|
||||
# Try using "humanish" part of source repo if user didn't specify one
|
||||
[ -z "$dir" ] && dir=$(echo "$repo" | sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*/||g')
|
||||
mkdir "$dir" &&
|
||||
[ -e "$dir" ] && $(echo "$dir already exists."; usage)
|
||||
mkdir -p "$dir" &&
|
||||
D=$(
|
||||
(cd "$dir" && git-init-db && pwd)
|
||||
) &&
|
||||
|
|
Loading…
Reference in a new issue