Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-05-20 13:18:50 +0400
committerJunio C Hamano <junkio@cox.net>2007-05-20 13:18:50 +0400
commite223249a13799c047797c80eab21e4e257283c3d (patch)
treeb7648b50ce1279dc682063a9d952d85d01b8004e /cache.h
parent063581e9b648b4da3b83061b06aed7ed417411e0 (diff)
parent7841ce79854868eaaa146c1d018b17fc4f3320be (diff)
Merge branch 'mst/connect'
* mst/connect: connect: display connection progress
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 3661a3fdf0..f98ccd0e20 100644
--- a/cache.h
+++ b/cache.h
@@ -461,7 +461,8 @@ struct ref {
#define REF_HEADS (1u << 1)
#define REF_TAGS (1u << 2)
-extern pid_t git_connect(int fd[2], char *url, const char *prog);
+#define CONNECT_VERBOSE (1u << 0)
+extern pid_t git_connect(int fd[2], char *url, const char *prog, int flags);
extern int finish_connect(pid_t pid);
extern int path_match(const char *path, int nr, char **match);
extern int match_refs(struct ref *src, struct ref *dst, struct ref ***dst_tail,