diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-07-02 21:48:08 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-07-02 21:48:08 -0700 |
commit | 3b0d9992ee9849cf12b16662f2b3c272e6792213 (patch) | |
tree | 28a3a84cc273c7eb4b94f485010b7f6ebc4a1019 /git-clone.sh | |
parent | git-fsck: add --lost-found option (diff) | |
parent | Quiet the output from git-init when cloning, if requested. (diff) | |
download | tgif-3b0d9992ee9849cf12b16662f2b3c272e6792213.tar.xz |
Merge branch 'jo/init'
* jo/init:
Quiet the output from git-init when cloning, if requested.
Add an option to quiet git-init.
Diffstat (limited to 'git-clone.sh')
-rwxr-xr-x | git-clone.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-clone.sh b/git-clone.sh index 4cbf60f554..262508683d 100755 --- a/git-clone.sh +++ b/git-clone.sh @@ -195,7 +195,7 @@ yes) GIT_DIR="$D" ;; *) GIT_DIR="$D/.git" ;; -esac && export GIT_DIR && git-init ${template+"$template"} || usage +esac && export GIT_DIR && git-init $quiet ${template+"$template"} || usage if test -n "$reference" then |