5 static const char peek_remote_usage[] =
6 "git-peek-remote [--exec=upload-pack] [host:]directory";
7 static const char *exec = "git-upload-pack";
9 static int peek_remote(int fd[2], unsigned flags)
13 get_remote_heads(fd[0], &ref, 0, NULL, flags);
17 printf("%s %s\n", sha1_to_hex(ref->old_sha1), ref->name);
23 int main(int argc, char **argv)
32 setup_git_directory_gently(&nongit);
34 for (i = 1; i < argc; i++) {
38 if (!strncmp("--exec=", arg, 7)) {
42 if (!strcmp("--tags", arg)) {
46 if (!strcmp("--heads", arg)) {
50 if (!strcmp("--refs", arg)) {
54 usage(peek_remote_usage);
60 if (!dest || i != argc - 1)
61 usage(peek_remote_usage);
63 pid = git_connect(fd, dest, exec);
66 ret = peek_remote(fd, flags);
69 ret |= finish_connect(pid);