Is there a way to show only the branch structure in Git? There are a number of tools that show the commits graphically, but in my case the list is so long that it's impossible to see the structure. I guess git-log could be the answer, but I can't find any switches that only show the branching commits. This along with "--graph --branches --oneline --all" could do the trick.

EDIT: I'm looking for a way to do this in Ubuntu.

link|improve this question

feedback

6 Answers

up vote 13 down vote accepted

I am not sure about what you mean by "branch structure".
git log can help visualize the branches made through commits (See this blog post):

[alias]
    lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative

git config --global alias.lg "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative"

alt text

But if you only wants the different HEAD branches, you could try something along the lines of:

heads = !"git log origin/master.. --format='%Cred%h%Creset;%C(yellow)%an%Creset;%H;%Cblue%f%Creset' | git name-rev --stdin --always --name-only | column -t -s';'"

(using the column command, and here only for commits since the last origin/master commit)

Note: Jakub Narębski recommands adding the option --simplify-by-decoration, see his answer.

link|improve this answer
This was pretty close (the latter solution), I just had to add the date and --branch to the command. Otherwise it only shows the current branch. Although it still doesn't leave out commits that are not the head. What I meant by "branch structure" is a way to see from what branch each branch is created, but with this command I can scroll through the list (which has about 350 commits) to see what has been going on. – Makis Sep 8 '10 at 12:34
@Makis: if you have a final command, you can post it as an answer: I am interested (and will vote it up). Then, you can even accept your own answer as the official one if you want. – VonC Sep 8 '10 at 13:26
I'm still looking into it, I'll be back at the office tomorrow to try to make sense of the structure. The repo was created with svn2git and I'm not 100% sure the svn repo was by the book either. – Makis Sep 8 '10 at 16:47
1  
@Makis: Try --simplify-by-decoration option to git-log. – Jakub Narębski Sep 9 '10 at 22:47
This does the trick, thanks! Thanks for everyone else for your suggestions as well! – Makis Sep 15 '10 at 7:55
feedback

Perhaps what you want is --simplify-by-decoration option, see git log documentation:

--simplify-by-decoration

     Commits that are referred by some branch or tag are selected.

So it would be

git log --graph --simplify-by-decoration --all

or following VonC answer

git log --graph --simplify-by-decoration \
   --pretty=format:'%Cred%h%Creset-%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' \
   --abbrev-commit --date=relative
link|improve this answer
Excellent, I had missed that particular option. +1 – VonC Sep 10 '10 at 4:18
@VonC: This is quite new option; it appeared in git version 1.6.1 – Jakub Narębski Sep 10 '10 at 9:25
1.6.1? git.kernel.org/?p=git/git.git;a=tags : Thu, 25 Dec 2008, seems a lifetime away to me ;) – VonC Sep 10 '10 at 10:55
feedback

gitx if you are on a mac

smartgit for mac and or Windoze (but i have not used it)

git-gui then for Ubuntu

link|improve this answer
Sorry, forgot to mention that I use Ubuntu. – Makis Sep 8 '10 at 10:57
git-gui (you mean gitk, right?) doesn't work for me - 1. it only shows branches you checkout, I wan the entire tree. 2. It shows all the commits, I'm interested just in the branch structure. – ripper234 May 27 '11 at 15:04
feedback

To get more information on how a particular branch relates to other branches in your repository and remotes, you can use git wtf which is an add on script by William Morgan: http://git-wt-commit.rubyforge.org/

It produces summary information like:

$ git wtf
Local branch: master
[x] in sync with remote
Remote branch: origin/master (git@gitorious.org:willgit/mainline.git)
[x] in sync with local

Feature branches:
{ } origin/experimental is NOT merged in (1 commit ahead)
    - some tweaks i'm playing around with [80e5da1]
{ } origin/dont-assume-origin is NOT merged in (1 commit ahead)
    - guess primary remote repo from git config instead of assuming "origin" [23c96f1]

(example taken from the above URL).

link|improve this answer
feedback

Basic solution is:

git log --graph --all

If you want to get more fancy:

git log --graph --all --pretty=format:"%Cblue%h%Creset [%Cgreen%ar%Creset] %s%C(yellow)%d%Creset"
link|improve this answer
feedback

Maybe I'm missing something, but nobody seems to have mentioned gitk --all yet.

link|improve this answer
It shows all the individual commits too. – Thorbjørn Ravn Andersen Feb 22 at 14:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.