git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] Forwarding Sverre's "merge --ff=<allow,only,never>" series
@ 2008-05-22  1:16 Junio C Hamano
  2008-05-22  1:16 ` [PATCH 1/6] Documentation for joining more than two histories Junio C Hamano
  0 siblings, 1 reply; 9+ messages in thread
From: Junio C Hamano @ 2008-05-22  1:16 UTC (permalink / raw)
  To: git; +Cc: Sverre Hvammen Johansen

A few weeks ago Sverre's "merge --ff=<allow,only,never>" series was
re-sent to the list but as 6 attachments to a single mail.  The format was
unfortunate and nobody seems to have bothered to read nor comment on.

I think the early patches in the series are at least worth keeping and the
overall series deserves some attention from the list, so I am re-injecting
them in format that can hopefully be commented on and tried out as a
public service ;-) I am tempted to apply up to [3/6] after another round
of reading myself.

A few minor nits I already have:

 [2/6]

"diff -u" in verify_diff() should be "test_cmp":

@@ -254,7 +254,7 @@
 +}
 +
 +verify_diff() {
-+      if ! diff -u "$1" "$2"
++      if ! test_cmp "$1" "$2"
 +      then
 +              echo "$3"
 +              false

 [3/6] 

The argument to --ff is optional (log message):

---ff now takes an argument allowing --ff to be written
-as --ff=allow and -no-ff to be written as --ff=never.
-This change allow other fast forward options to be
-introduced later.
-
-See the documentation for a further explanation of these options.
+The --ff flag now takes an optional argument, allowing --ff to be
+written as --ff=allow and -no-ff to be written as --ff=never. This
+allows other fast forward options to be introduced later.

Also, you usually should not say 'see doc for details' in commit log, as
it does not help anybody.  Either you convince others that your patch is
worth reading by your commit log message alone, or you don't.

Grammar.

 +The first merge of topicA or the only merge of topicB would have
-+resulted in a fast forward without '--ff=never'.  Topic A consist of
++resulted in a fast forward without '--ff=never'.  Topic A consists of
 +those commits that can be reached from master^2 without passing

 [4/6]

Grammar.

 +# Find reduced parents
-+# The following variables are set as follow:
++# The following variables are set as follows:
 +#   reduced_parents: The reduced parents of those specified on the
 command line.

 [6/6]

Commit log:

 instead of a real merge.  This option can then be used to
 avoid an accidental merge.
 
-See the documentation for further details.
-

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2008-05-22 12:51 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-22  1:16 [PATCH 0/6] Forwarding Sverre's "merge --ff=<allow,only,never>" series Junio C Hamano
2008-05-22  1:16 ` [PATCH 1/6] Documentation for joining more than two histories Junio C Hamano
2008-05-22  1:16   ` [PATCH 2/6] New merge tests Junio C Hamano
2008-05-22  1:16     ` [PATCH 3/6] Introduce -ff=<fast forward option> Junio C Hamano
2008-05-22  1:16       ` [PATCH 4/6] Restructure git-merge.sh Junio C Hamano
2008-05-22  1:16         ` [PATCH 5/6] Head reduction before selecting merge strategy Junio C Hamano
2008-05-22  1:16           ` [PATCH 6/6] Introduce fast forward option only Junio C Hamano
2008-05-22 10:48         ` [PATCH 4/6] Restructure git-merge.sh Johannes Schindelin
2008-05-22 12:50           ` Johannes Schindelin

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).