git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* merge --no-commit not able to report stats more verbosely?
@ 2012-10-22 13:39 Scott R. Godin
  2012-10-26 17:18 ` Scott R. Godin
  2012-10-28 11:21 ` Jeff King
  0 siblings, 2 replies; 5+ messages in thread
From: Scott R. Godin @ 2012-10-22 13:39 UTC (permalink / raw)
  To: git

As you can see from the below, I can't seem to get it to give me more
verbose results of what's being merged (as in the actual merge below)
with --stat or -v .. is it supposed to do that?

(develop)>$ git merge --no-commit --stat -v widget_twitter
Automatic merge went well; stopped before committing as requested
(develop|MERGING)>$ git merge --abort

(develop)>$ git merge widget_twitter
Merge made by the 'recursive' strategy.
 .../code/community/Dnd/Magentweet/Model/User.php   |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


(develop)>$ git --version
git version 1.7.7.6



-- 
(please respond to the list as opposed to my email box directly,
unless you are supplying private information you don't want public
on the list)

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

* Re: merge --no-commit not able to report stats more verbosely?
  2012-10-22 13:39 merge --no-commit not able to report stats more verbosely? Scott R. Godin
@ 2012-10-26 17:18 ` Scott R. Godin
  2012-10-28 11:21 ` Jeff King
  1 sibling, 0 replies; 5+ messages in thread
From: Scott R. Godin @ 2012-10-26 17:18 UTC (permalink / raw)
  To: git

Looks like I got lost in the press of other issues. anyone?

On 10/22/2012 09:39 AM, Scott R. Godin wrote:
> As you can see from the below, I can't seem to get it to give me more
> verbose results of what's being merged (as in the actual merge below)
> with --stat or -v .. is it supposed to do that?
> 
> (develop)>$ git merge --no-commit --stat -v widget_twitter
> Automatic merge went well; stopped before committing as requested
> (develop|MERGING)>$ git merge --abort
> 
> (develop)>$ git merge widget_twitter
> Merge made by the 'recursive' strategy.
>  .../code/community/Dnd/Magentweet/Model/User.php   |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> 
> (develop)>$ git --version
> git version 1.7.7.6
> 
> 
> 


-- 
(please respond to the list as opposed to my email box directly,
unless you are supplying private information you don't want public
on the list)

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

* Re: merge --no-commit not able to report stats more verbosely?
  2012-10-22 13:39 merge --no-commit not able to report stats more verbosely? Scott R. Godin
  2012-10-26 17:18 ` Scott R. Godin
@ 2012-10-28 11:21 ` Jeff King
  2012-10-29 18:12   ` Phil Hord
  1 sibling, 1 reply; 5+ messages in thread
From: Jeff King @ 2012-10-28 11:21 UTC (permalink / raw)
  To: Scott R. Godin; +Cc: git

On Mon, Oct 22, 2012 at 09:39:31AM -0400, Scott R. Godin wrote:

> As you can see from the below, I can't seem to get it to give me more
> verbose results of what's being merged (as in the actual merge below)
> with --stat or -v .. is it supposed to do that?

Yes. The diffstat is shown for the completed merge, but here:

> (develop)>$ git merge --no-commit --stat -v widget_twitter
> Automatic merge went well; stopped before committing as requested

You do not complete the merge.

> (develop|MERGING)>$ git merge --abort
> 
> (develop)>$ git merge widget_twitter
> Merge made by the 'recursive' strategy.
>  .../code/community/Dnd/Magentweet/Model/User.php   |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)

Whereas here you do, and you get a diffstat.

When you are in the middle of an uncompleted merge and want to know what
is happening, you should look at the index using "git status" (to get an
overview of what is ready to be committed and what is unmerged), "git
diff --cached" (to see what was automatically merged and is ready for
commit), and "git diff" (to see conflicted entries that still need to be
resolved).

-Peff

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

* Re: merge --no-commit not able to report stats more verbosely?
  2012-10-28 11:21 ` Jeff King
@ 2012-10-29 18:12   ` Phil Hord
  2012-10-29 21:51     ` Jeff King
  0 siblings, 1 reply; 5+ messages in thread
From: Phil Hord @ 2012-10-29 18:12 UTC (permalink / raw)
  To: Jeff King; +Cc: Scott R. Godin, git

On Sun, Oct 28, 2012 at 7:21 AM, Jeff King <peff@peff.net> wrote:
> On Mon, Oct 22, 2012 at 09:39:31AM -0400, Scott R. Godin wrote:
>
>> As you can see from the below, I can't seem to get it to give me more
>> verbose results of what's being merged (as in the actual merge below)
>> with --stat or -v .. is it supposed to do that?
>
> Yes. The diffstat is shown for the completed merge, but here:
>
>> (develop)>$ git merge --no-commit --stat -v widget_twitter
>> Automatic merge went well; stopped before committing as requested
>
> You do not complete the merge.
>
>> (develop|MERGING)>$ git merge --abort
>>
>> (develop)>$ git merge widget_twitter
>> Merge made by the 'recursive' strategy.
>>  .../code/community/Dnd/Magentweet/Model/User.php   |    3 ++-
>>  1 files changed, 2 insertions(+), 1 deletions(-)
>
> Whereas here you do, and you get a diffstat.
>
> When you are in the middle of an uncompleted merge and want to know what
> is happening, you should look at the index using "git status" (to get an
> overview of what is ready to be committed and what is unmerged), "git
> diff --cached" (to see what was automatically merged and is ready for
> commit), and "git diff" (to see conflicted entries that still need to be
> resolved).

I think he is looking for this bit
    "Merge made by the 'recursive' strategy."

But he is seeing this instead:
    "Automatic merge went well; stopped before committing as requested"

Should the "what happened" output be silenced on --no-commit?

Phil

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

* Re: merge --no-commit not able to report stats more verbosely?
  2012-10-29 18:12   ` Phil Hord
@ 2012-10-29 21:51     ` Jeff King
  0 siblings, 0 replies; 5+ messages in thread
From: Jeff King @ 2012-10-29 21:51 UTC (permalink / raw)
  To: Phil Hord; +Cc: Scott R. Godin, git

On Mon, Oct 29, 2012 at 02:12:32PM -0400, Phil Hord wrote:

> >> (develop)>$ git merge widget_twitter
> >> Merge made by the 'recursive' strategy.
> >>  .../code/community/Dnd/Magentweet/Model/User.php   |    3 ++-
> >>  1 files changed, 2 insertions(+), 1 deletions(-)
> >
> > Whereas here you do, and you get a diffstat.
> >
> > When you are in the middle of an uncompleted merge and want to know what
> > is happening, you should look at the index using "git status" (to get an
> > overview of what is ready to be committed and what is unmerged), "git
> > diff --cached" (to see what was automatically merged and is ready for
> > commit), and "git diff" (to see conflicted entries that still need to be
> > resolved).
> 
> I think he is looking for this bit
>     "Merge made by the 'recursive' strategy."
> 
> But he is seeing this instead:
>     "Automatic merge went well; stopped before committing as requested"
> 
> Should the "what happened" output be silenced on --no-commit?

Ah. Yeah, we should not print "Merge made by the..." because we did not
make a merge (and that message is part of the process to update the
ref). But in verbose mode, we could probably say more about the on-going
process (like which strategies we are trying). Patches welcome.

-Peff

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

end of thread, other threads:[~2012-10-29 21:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-22 13:39 merge --no-commit not able to report stats more verbosely? Scott R. Godin
2012-10-26 17:18 ` Scott R. Godin
2012-10-28 11:21 ` Jeff King
2012-10-29 18:12   ` Phil Hord
2012-10-29 21:51     ` Jeff King

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