diff options
author | Michael S. Tsirkin <mst@dev.mellanox.co.il> | 2007-05-16 20:09:41 +0300 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-16 12:48:18 -0700 |
commit | 7841ce79854868eaaa146c1d018b17fc4f3320be (patch) | |
tree | 297639aba698d4c6a1c1b573ea96aa741c6bc9c3 /peek-remote.c | |
parent | fdcb769916c93b53517ef1b4cae447a3333c9b86 (diff) | |
download | git-7841ce79854868eaaa146c1d018b17fc4f3320be.tar.gz git-7841ce79854868eaaa146c1d018b17fc4f3320be.tar.xz |
connect: display connection progress
Make git notify the user about host resolution/connection attempts.
This is useful both as a progress indicator on slow links, and helps
reassure the user there are no firewall problems.
Signed-off-by: Michael S. Tsirkin <mst@dev.mellanox.co.il>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'peek-remote.c')
-rw-r--r-- | peek-remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/peek-remote.c b/peek-remote.c index 96bfac498..ceb787170 100644 --- a/peek-remote.c +++ b/peek-remote.c @@ -64,7 +64,7 @@ int main(int argc, char **argv) if (!dest || i != argc - 1) usage(peek_remote_usage); - pid = git_connect(fd, dest, uploadpack); + pid = git_connect(fd, dest, uploadpack, 0); if (pid < 0) return 1; ret = peek_remote(fd, flags); |