Re: git log for only certain branches

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Robert Dailey <rcdailey.lists@xxxxxxxxx> writes:

> I have more details about my inquiry on StackOverflow:
> http://stackoverflow.com/questions/22823768/view-git-log-with-merges-for-only-certain-branches
>
> Basically I'd like to know if it is possible to show the graph for
> ONLY branches that I list. The key here is that the graph should also
> show relationships between only those branches that I list. In other
> words, any ancestors that I do not explicitly specify should not be
> rendered in the graph.
>
> I have an insanely huge number of branches in my git repo (we
> transitioned from SVN so we haven't had a chance to clean them up
> yet). As a result, the git log graph I see has literally 10-20
> vertical lines and I have to scroll 20+ pages to follow a line to a
> particular parent branch.

I do not quite get this part (note that it is impolite to ask people
to go to stackoverflow or any external site to answer questions
asked here, but I am making an exception today):

  $ git log --oneline --graph origin/master origin/topic1

  It will show all branches anyway, even though I've specified I only
  want to see two of them.

These should show commits reachable from these two branches,
origin/master and origin/topic1, and nothing else.

  $ git log --oneline --graph \
    origin/master origin/topic1 \
    --not $(git merge-base --all origin/master origin/topic1)

would stop where the histories of these two branches meet (assuming
that you consider that the common ancestors of these two not
interesting when you say "all branches anyway", but these common
ancestors are still part of these two branches ;-).
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]