From: Jonathan Nieder <jrnieder@gmail.com>
To: Jared Hance <jaredhance@gmail.com>
Cc: git@vger.kernel.org, Junio C Hamano <gitster@pobox.com>
Subject: Re: [PATCH v3 3/3] Add support for merging from upstream by default.
Date: Tue, 8 Feb 2011 19:41:29 -0600 [thread overview]
Message-ID: <20110209014129.GB24346@elie> (raw)
In-Reply-To: <1297211028-14382-4-git-send-email-jaredhance@gmail.com>
Jared Hance wrote:
> --- a/Documentation/config.txt
> +++ b/Documentation/config.txt
> @@ -1389,6 +1389,12 @@ man.<tool>.path::
>
> include::merge-config.txt[]
>
> +merge.defaultUpstream::
[...]
Might make sense to put this in merge-config.txt, to get documentation
in git-merge(1) for free.
> --- a/builtin/merge.c
> +++ b/builtin/merge.c
> @@ -525,6 +527,8 @@ static int per_branch_config(const char *k, const char *v, void *cb)
>
> return 0;
> }
> + else if (!strcmp(variable, ".merge"))
> + return git_config_string(&upstream_branch, k, v);
Style:
} else if (...) {
return git_config_string(...);
}
> @@ -1017,9 +1023,13 @@ int cmd_merge(int argc, const char **argv, const char *prefix)
> if (!allow_fast_forward && fast_forward_only)
> die("You cannot combine --no-ff with --ff-only.");
>
> - if (!argc)
> - usage_with_options(builtin_merge_usage,
> - builtin_merge_options);
> + if (!argc) {
> + if (!default_upstream || !upstream_branch)
> + usage_with_options(builtin_merge_usage,
> + builtin_merge_options);
> + else
> + setup_merge_commit(&buf, &remotes, upstream_branch);
Why the "else"? usage_msg_opt doesn't return to the caller.
Hopefully someone will chime in with some tests to complement
t5520-pull (hint, hint). :)
Jonathan
diff --git a/Documentation/git-merge.txt b/Documentation/git-merge.txt
index c1efaaa..bc8ce25 100644
--- a/Documentation/git-merge.txt
+++ b/Documentation/git-merge.txt
@@ -11,7 +11,7 @@ SYNOPSIS
[verse]
'git merge' [-n] [--stat] [--no-commit] [--squash]
[-s <strategy>] [-X <strategy-option>]
- [--[no-]rerere-autoupdate] [-m <msg>] <commit>...
+ [--[no-]rerere-autoupdate] [-m <msg>] [<commit>...]
'git merge' <msg> HEAD <commit>...
'git merge' --abort
@@ -97,7 +97,10 @@ commit or stash your changes before running 'git merge'.
Commits, usually other branch heads, to merge into our branch.
You need at least one <commit>. Specifying more than one
<commit> obviously means you are trying an Octopus.
-
++
+By default, if no commit is specified then git will error out.
+However, the `merge.defaultToUpstream` configuration item (see below)
+changes that.
PRE-MERGE CHECKS
----------------
next prev parent reply other threads:[~2011-02-09 1:41 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-08 20:48 [PATCH v2] Add support for merging from upstream by default Jared Hance
2011-02-08 21:38 ` Jay Soffian
2011-02-08 22:33 ` Jonathan Nieder
2011-02-09 0:04 ` Junio C Hamano
2011-02-09 1:48 ` Jonathan Nieder
2011-02-09 0:23 ` [PATCH v3 0/3] Updated patch series for default upstream merge Jared Hance
2011-02-09 0:23 ` [PATCH v3 1/3] Add setup_merge_commit function to merge/builtin.c Jared Hance
2011-02-09 23:24 ` Junio C Hamano
2011-02-09 0:23 ` [PATCH v3 2/3] Add function per_branch_config Jared Hance
2011-02-09 1:14 ` Jonathan Nieder
2011-02-09 23:27 ` Junio C Hamano
2011-02-09 0:23 ` [PATCH v3 3/3] Add support for merging from upstream by default Jared Hance
2011-02-09 1:41 ` Jonathan Nieder [this message]
2011-02-09 0:34 ` [PATCH v3 0/3] Updated patch series for default upstream merge Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110209014129.GB24346@elie \
--to=jrnieder@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jaredhance@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).