]> asedeno.scripts.mit.edu Git - git.git/blobdiff - builtin-push.c
Documentation: Describe other situations where -z affects git diff
[git.git] / builtin-push.c
index 5633f0ade49f7c845665b7aab202be18a8cc9d8d..9fc69312472828a5d6c467799823fc96d94334cd 100644 (file)
@@ -10,7 +10,7 @@
 #include "parse-options.h"
 
 static const char * const push_usage[] = {
-       "git push [<options>] [<repository> <refspec>...]",
+       "git push [<options>] [<repository> [<refspec>...]]",
        NULL,
 };
 
@@ -68,7 +68,7 @@ static void setup_push_tracking(void)
        struct branch *branch = branch_get(NULL);
        if (!branch)
                die("You are not currently on a branch.");
-       if (!branch->merge_nr)
+       if (!branch->merge_nr || !branch->merge)
                die("The current branch %s is not tracking anything.",
                    branch->name);
        if (branch->merge_nr != 1)