* git-merge --no-commit commits
@ 2007-12-02 16:57 Vegard Nossum
2007-12-02 17:10 ` Jakub Narebski
0 siblings, 1 reply; 4+ messages in thread
From: Vegard Nossum @ 2007-12-02 16:57 UTC (permalink / raw)
To: git
Hi,
I am using git 1.5.3.4 and just did the following (v1 and v2 are
branches; v1 is a parent of v2):
git checkout v1
git merge --no-commit v2
It simply fast-forwarded AND committed even though I explicitly told
it not to. What gives?
Kind regards,
Vegard Nossum
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git-merge --no-commit commits
2007-12-02 16:57 git-merge --no-commit commits Vegard Nossum
@ 2007-12-02 17:10 ` Jakub Narebski
2007-12-02 17:18 ` Vegard Nossum
0 siblings, 1 reply; 4+ messages in thread
From: Jakub Narebski @ 2007-12-02 17:10 UTC (permalink / raw)
To: Vegard Nossum; +Cc: git
"Vegard Nossum" <vegard.nossum@gmail.com> writes:
> I am using git 1.5.3.4 and just did the following (v1 and v2 are
> branches; v1 is a parent of v2):
>
> git checkout v1
> git merge --no-commit v2
>
> It simply fast-forwarded AND committed even though I explicitly told
> it not to. What gives?
The --no-commit option doesn't prevent fast-forward because
fast-forward doesn't really _create_ a commit (and -no-commit is
really about commit creation). It just advanced ref (branch head).
You probably wanted to use
$ git merge --no-commit --no-ff v2
HTH
--
Jakub Narebski
ShadeHawk on #git
Poland
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git-merge --no-commit commits
2007-12-02 17:10 ` Jakub Narebski
@ 2007-12-02 17:18 ` Vegard Nossum
2007-12-02 18:00 ` Jakub Narebski
0 siblings, 1 reply; 4+ messages in thread
From: Vegard Nossum @ 2007-12-02 17:18 UTC (permalink / raw)
To: Jakub Narebski; +Cc: git
On Dec 2, 2007 6:10 PM, Jakub Narebski <jnareb@gmail.com> wrote:
> "Vegard Nossum" <vegard.nossum@gmail.com> writes:
>
> > I am using git 1.5.3.4 and just did the following (v1 and v2 are
> > branches; v1 is a parent of v2):
> >
> > git checkout v1
> > git merge --no-commit v2
> >
> > It simply fast-forwarded AND committed even though I explicitly told
> > it not to. What gives?
>
> The --no-commit option doesn't prevent fast-forward because
> fast-forward doesn't really _create_ a commit (and -no-commit is
> really about commit creation). It just advanced ref (branch head).
>
> You probably wanted to use
>
> $ git merge --no-commit --no-ff v2
>
Yes. Thanks. Isn't that counter-intuitive, though? The manpage says
that it lets you review the changes first. I assumed this would
include fast-forwarding as well. There is no --no-ff in my git-merge
manpage. Maybe I need a newer version?
> HTH
> --
> Jakub Narebski
> ShadeHawk on #git
> Poland
>
Vegard
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git-merge --no-commit commits
2007-12-02 17:18 ` Vegard Nossum
@ 2007-12-02 18:00 ` Jakub Narebski
0 siblings, 0 replies; 4+ messages in thread
From: Jakub Narebski @ 2007-12-02 18:00 UTC (permalink / raw)
To: Vegard Nossum; +Cc: git
On Sun, 2 Dec 2007, Vegard Nossum wrote:
> On Dec 2, 2007 6:10 PM, Jakub Narebski <jnareb@gmail.com> wrote:
>> "Vegard Nossum" <vegard.nossum@gmail.com> writes:
>>
>>> I am using git 1.5.3.4 and just did the following (v1 and v2 are
>>> branches; v1 is a parent of v2):
>>>
>>> git checkout v1
>>> git merge --no-commit v2
>>>
>>> It simply fast-forwarded AND committed even though I explicitly told
>>> it not to. What gives?
>>
>> The --no-commit option doesn't prevent fast-forward because
>> fast-forward doesn't really _create_ a commit (and -no-commit is
>> really about commit creation). It just advanced ref (branch head).
>>
>> You probably wanted to use
>>
>> $ git merge --no-commit --no-ff v2
>
> Yes. Thanks. Isn't that counter-intuitive, though? The manpage says
> that it lets you review the changes first. I assumed this would
> include fast-forwarding as well.
But for fast-forward there are no "changes" to review. Just updating
branch head. Fast-forward means no new commit.
> There is no --no-ff in my git-merge
> manpage. Maybe I need a newer version?
It looks like it is not in any released version. I've found description
in 'master' version of Documentation/merge-options.txt
--
Jakub Narebski
Poland
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-12-02 18:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-02 16:57 git-merge --no-commit commits Vegard Nossum
2007-12-02 17:10 ` Jakub Narebski
2007-12-02 17:18 ` Vegard Nossum
2007-12-02 18:00 ` Jakub Narebski
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).