git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Alex Henrie <alexhenrie24@gmail.com>
To: git@vger.kernel.org, rcdailey.lists@gmail.com, newren@gmail.com,
	rsbecker@nexbridge.com, gitster@pobox.com, annulen@yandex.ru
Cc: Alex Henrie <alexhenrie24@gmail.com>
Subject: [PATCH] pull: warn if the user didn't say whether to rebase or to merge
Date: Fri, 28 Feb 2020 14:58:33 -0700	[thread overview]
Message-ID: <20200228215833.319691-1-alexhenrie24@gmail.com> (raw)

Most Git users are contributors, not maintainers, and want to use
`git pull` to rebase their changes before sending a pull request to the
upstream project. However, novice Git users often forget to specify the
--rebase option when pulling, leading to an unwanted merge commit. To
avoid that situation, Git should require users to explicitly specify
whether their primary workflow is a contributor/rebasing workflow or a
maintainer/merging workflow.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
---
 builtin/pull.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/builtin/pull.c b/builtin/pull.c
index 3e624d1e00..8ec8e6f5d3 100644
--- a/builtin/pull.c
+++ b/builtin/pull.c
@@ -327,6 +327,13 @@ static enum rebase_type config_get_rebase(void)
 	if (!git_config_get_value("pull.rebase", &value))
 		return parse_config_rebase("pull.rebase", value, 1);
 
+	if (strcmp(opt_ff, "--ff-only") != 0) {
+		warning(_("Pulling without specifying whether to rebase or to merge is discouraged\n"
+			"and will be disallowed in a future Git release.\n"
+			"Next time, run `git config pull.rebase (true|false)` first\n"
+			"or specify --rebase or --no-rebase on the command line.\n"));
+	}
+
 	return REBASE_FALSE;
 }
 
-- 
2.25.1


             reply	other threads:[~2020-02-28 21:58 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-28 21:58 Alex Henrie [this message]
2020-02-28 23:16 ` [PATCH] pull: warn if the user didn't say whether to rebase or to merge Junio C Hamano
2020-02-29  3:03   ` Theodore Y. Ts'o
2020-02-29 16:16     ` Randall S. Becker
2020-02-29 16:33     ` 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=20200228215833.319691-1-alexhenrie24@gmail.com \
    --to=alexhenrie24@gmail.com \
    --cc=annulen@yandex.ru \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=newren@gmail.com \
    --cc=rcdailey.lists@gmail.com \
    --cc=rsbecker@nexbridge.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).