X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=rpull.c;h=8b3322fe0798d8d74c54817d020ff1478d4a25d4;hb=65c2e0c349aa5c7f605defb52dc67f1b3658a1b9;hp=6624440d5ad24854e1bd1a8dff628427581198e0;hpb=4250a5e5b1755e45153248217fe1d5550c972c8d;p=git.git diff --git a/rpull.c b/rpull.c index 6624440d..8b3322fe 100644 --- a/rpull.c +++ b/rpull.c @@ -1,11 +1,5 @@ -#include -#include -#include -#include #include "cache.h" #include "commit.h" -#include -#include #include "rsh.h" #include "pull.h" @@ -14,10 +8,12 @@ static int fd_out; int fetch(unsigned char *sha1) { - if (has_sha1_file(sha1)) - return 0; + int ret; write(fd_out, sha1, 20); - return write_sha1_from_fd(sha1, fd_in); + ret = write_sha1_from_fd(sha1, fd_in); + if (!ret) + pull_say("got %s\n", sha1_to_hex(sha1)); + return ret; } int main(int argc, char **argv) @@ -31,21 +27,25 @@ int main(int argc, char **argv) get_tree = 1; } else if (argv[arg][1] == 'c') { get_history = 1; + } else if (argv[arg][1] == 'd') { + get_delta = 0; } else if (argv[arg][1] == 'a') { get_all = 1; get_tree = 1; get_history = 1; + } else if (argv[arg][1] == 'v') { + get_verbosely = 1; } arg++; } if (argc < arg + 2) { - usage("rpull [-c] [-t] [-a] commit-id url"); + usage("git-rpull [-c] [-t] [-a] [-v] [-d] commit-id url"); return 1; } commit_id = argv[arg]; url = argv[arg + 1]; - if (setup_connection(&fd_in, &fd_out, "rpush", url, arg, argv + 1)) + if (setup_connection(&fd_in, &fd_out, "git-rpush", url, arg, argv + 1)) return 1; if (pull(commit_id))