diff options
author | Sasha Khapyorsky <sashak@voltaire.com> | 2006-09-14 05:24:04 +0300 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-13 23:39:43 -0700 |
commit | 38529e28a4f465ad5d5f2fa249ca17da680bac5f (patch) | |
tree | 987d2cae63d91de099e5e9ec0a7945ca24e0d16f /git-fetch.sh | |
parent | b85c4bbbd7d16c084f0b2f0eb9678149d08d09e8 (diff) | |
download | git-38529e28a4f465ad5d5f2fa249ca17da680bac5f.tar.gz git-38529e28a4f465ad5d5f2fa249ca17da680bac5f.tar.xz |
Trivial support for cloning and fetching via ftp://.
This adds trivial support for cloning and fetching via ftp://.
Signed-off-by: Sasha Khapyorsky <sashak@voltaire.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-fetch.sh')
-rwxr-xr-x | git-fetch.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-fetch.sh b/git-fetch.sh index c2eebee79..09a5d6cea 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -286,7 +286,7 @@ fetch_main () { # There are transports that can fetch only one head at a time... case "$remote" in - http://* | https://*) + http://* | https://* | ftp://*) if [ -n "$GIT_SSL_NO_VERIFY" ]; then curl_extra_args="-k" fi @@ -350,7 +350,7 @@ fetch_main () { done case "$remote" in - http://* | https://* | rsync://* ) + http://* | https://* | ftp://* | rsync://* ) ;; # we are already done. *) ( : subshell because we muck with IFS |