diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-02-20 00:54:24 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-20 00:54:24 -0800 |
commit | e3c58f8b300dbc80b97a31a3a2758de00c5b52ce (patch) | |
tree | 44cd833c9842eef1555d3b8e218ed21519142ba8 /builtin-push.c | |
parent | b9dfe51c96cfc258cb0bc41433853892c35e0beb (diff) | |
parent | 7c33d3a5116fd72877802288cca6735642bb5d6f (diff) | |
download | git-e3c58f8b300dbc80b97a31a3a2758de00c5b52ce.tar.gz |
Merge branch 'maint'
* maint:
Rename git-core rpm to just git and rename the meta-pacakge to git-all.
push: document the status output
Documentation/push: clarify matching refspec behavior
push: indicate partialness of error message
Diffstat (limited to 'builtin-push.c')
-rw-r--r-- | builtin-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-push.c b/builtin-push.c index c8cb63e238..9f727c00f6 100644 --- a/builtin-push.c +++ b/builtin-push.c @@ -90,7 +90,7 @@ static int do_push(const char *repo, int flags) if (!err) continue; - error("failed to push to '%s'", remote->url[i]); + error("failed to push some refs to '%s'", remote->url[i]); errs++; } return !!errs; |