git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* git merge algorithm question
       [not found] <202EE2E2-1D0B-4772-85F7-7C7804905297@google.com>
@ 2017-09-06  0:53 ` Daniel Biran
  2017-09-06  1:43   ` Bryan Turner
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Biran @ 2017-09-06  0:53 UTC (permalink / raw)
  To: git


>> I'm trying to better understand one of the merge algorithms as I had some triumphs and tribulations with using a set of commands during a merge. tldr: can a git merge -s recursive -X patience; // result in a fast-forward merge? will --no-ff stop it
>> 
>> So, the scenario is this:
>> 	- Merging a master branch into a feature branch that is 2+ years old
>> 	- We found this command was more beneficial when merging a large 20k line text file: 
>> 		- git merge -s recursive -X patience master
>> 	- In a recent merge using this approach the reflog shows that the merge was performed using a fast-forward from the feature branch's head
>> 		- 082517-1, feature/branch) HEAD@{23}: merge feature/branch: Fast-forward
>> 
>> 
>> My question is, is it possible for that command to use a fast-forward like this? (or did something else go horribly wrong? possibly an atlassian git GUI tool corrupting the work):
>> 	- If it is possible for the command to fast-forward the merge when making the commit does --no-ff force the command to never use fast-forward in this case
>> 
>> Thanks for the help,
>> Daniel
> 


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

* Re: git merge algorithm question
  2017-09-06  0:53 ` git merge algorithm question Daniel Biran
@ 2017-09-06  1:43   ` Bryan Turner
  0 siblings, 0 replies; 2+ messages in thread
From: Bryan Turner @ 2017-09-06  1:43 UTC (permalink / raw)
  To: Daniel Biran; +Cc: Git Users

On Tue, Sep 5, 2017 at 5:53 PM, Daniel Biran <dbiran@google.com> wrote:
>
>>> I'm trying to better understand one of the merge algorithms as I had some triumphs and tribulations with using a set of commands during a merge. tldr: can a git merge -s recursive -X patience; // result in a fast-forward merge? will --no-ff stop it
>>>
>>> So, the scenario is this:
>>>      - Merging a master branch into a feature branch that is 2+ years old
>>>      - We found this command was more beneficial when merging a large 20k line text file:
>>>              - git merge -s recursive -X patience master
>>>      - In a recent merge using this approach the reflog shows that the merge was performed using a fast-forward from the feature branch's head
>>>              - 082517-1, feature/branch) HEAD@{23}: merge feature/branch: Fast-forward
>>>
>>>
>>> My question is, is it possible for that command to use a fast-forward like this? (or did something else go horribly wrong? possibly an atlassian git GUI tool corrupting the work):
>>>      - If it is possible for the command to fast-forward the merge when making the commit does --no-ff force the command to never use fast-forward in this case

Unless you specify --no-ff, git merge is always free to create a
fast-forward "merge", even when you request the recursive strategy
explicitly:

$ git init recursive-merge
Initialized empty Git repository in C:/Temp/recursive-merge/.git/

$ cd recursive-merge/

$ echo "Test" > file.txt

$ git add file.txt

$ git commit -m "Initial commit"
[master (root-commit) ad48617] Initial commit
 1 file changed, 1 insertion(+)
 create mode 100644 file.txt

$ git checkout -b feature-branch
Switched to a new branch 'feature-branch'

$ echo "Edit" >> file.txt

$ git commit -am "Feature branch change"
[feature-branch b226557] Feature branch change
 1 file changed, 1 insertion(+)

$ git checkout master
Switched to branch 'master'

$ git merge -s recursive -X patience feature-branch
Updating ad48617..b226557
Fast-forward
 file.txt | 1 +
 1 file changed, 1 insertion(+)

With --no-ff:

$ git reset --hard ad48617
HEAD is now at ad48617 Initial commit

$ git merge --no-ff -s recursive -X patience feature-branch
Merge made by the 'recursive' strategy.
 file.txt | 1 +
 1 file changed, 1 insertion(+)

With fast-forwarding disabled, you can see the recursive strategy is
used as requested.

>>>
>>> Thanks for the help,
>>> Daniel
>>
>

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

end of thread, other threads:[~2017-09-06  1:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <202EE2E2-1D0B-4772-85F7-7C7804905297@google.com>
2017-09-06  0:53 ` git merge algorithm question Daniel Biran
2017-09-06  1:43   ` Bryan Turner

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).