I’ve recently tried using branches in git but while they work allright whatever I do I can’t display the graph of my branches and merges. I’ve tried Giggle for ubuntu and gitk -all but none of them works as shown in this nettuts+ tutorial http://net.tutsplus.com/tutorials/other/easy-version-control-with-git/
I type in that
$ git log --graph #Sorry my sreenshot is missing h at the end
but instead of this…

…I get this…

I would be really pleased with a quick reply…
Here is what ‘ $ gitk –all ‘ outputs

You might be looking for
git log --graph --all, likewise withgitk, I have an alias in my shell:for just that purpose.
From
git help logSo if you have branches
a,b, andc, it’s as if you told git to show the logs and graphs in this manner:Essentially,
git logallows you to list any objets you can reference in what you want to see the logs for. You can even use it on a file, or multiple files files….And so on…