summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d79374c)
raw | patch | inline | side by side (parent: d79374c)
author | Daniel Barkalow <barkalow@iabervon.org> | |
Sun, 4 Dec 2005 16:59:37 +0000 (11:59 -0500) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sun, 4 Dec 2005 18:32:49 +0000 (10:32 -0800) |
If you try to push into an empty repository with no ref arguments to
git push, it doesn't do anything and doesn't say anything. This adds a
warning when send-pack isn't going to push anything, so you don't
assume that it silently did what you wanted.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git push, it doesn't do anything and doesn't say anything. This adds a
warning when send-pack isn't going to push anything, so you don't
assume that it silently did what you wanted.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
send-pack.c | patch | blob | history |
diff --git a/send-pack.c b/send-pack.c
index 2a14b00845c0211a0ddb38dad892ff2be0fdc8cc..f61c15c820facf936856c0af6be52a266b7e3dfd 100644 (file)
--- a/send-pack.c
+++ b/send-pack.c
if (match_refs(local_refs, remote_refs, &remote_tail,
nr_refspec, refspec, send_all))
return -1;
+
+ if (!remote_refs) {
+ fprintf(stderr, "No refs in common and none specified; doing nothing.\n");
+ return 0;
+ }
+
/*
* Finally, tell the other end!
*/