vote up 3 vote down star

The article has the following inputs and outputs

git co master
git merge [your_branch]
git push

upstream    A-B-C-D-E            A-B-C-D-E-F-G
                 \        ---->               \
your branch       C-D-E                        G

I am interested how you get the tree like-view of commits in your terminal without using Gitk or Gitx in OS/X.

How can you get the tree-like view of commits in terminal?

flag

Excellent addition to my answer, thank you for this feedback. – VonC Jul 4 at 7:07
@Masi: again thank you for the edit. I will test this and post the result in the same answer. – VonC Jul 4 at 19:32

2 Answers

vote up 4 vote down check

How can you get the tree-like view of commits in terminal?

git log --graph --oneline --all

is a good start.

You may get some strange letters. They are ASCII codes for colors and structure. To solve this problem add the following to your .bashrc

export LESS="-R"

such that you do not need use Tig's ASCII filter by

git log --graph --pretty=oneline --abbrev-commit | tig   // Masi needed this

The article text-based graph from Git-ready contains other options:

git log --graph --pretty=oneline --abbrev-commit

alt text

Regarding the article you mention, I would go with Pod's answer: ad-hoc hand-made output.


Jakub Narębski mentions in the comments tig (2006-2009), a ncurses-based text-mode interface for git. See their releases.
It has a --graph option back in 2007.

link|flag
Your command gives me: "1 fatal: unrecognized argument: -oneline" – Masi Jun 30 at 15:55
Your second command gives me files.getdropbox.com/u/175564/gitTree.png – Masi Jun 30 at 15:56
-oneline? did you type one '-' or two? '--oneline' – VonC Jun 30 at 15:57
I just tested it on my repo. It works but I am on Windows with MSysGit1.6.3. – VonC Jun 30 at 15:57
2  
There is also 'tig', text-mode interface for git (using ncurses), which had graphical history view in terminal before there was '--graph' option to git-log. – Jakub NarÄ™bski Jun 30 at 16:50
show 7 more comments
vote up 0 vote down

I suspect he drew that himself for the article.

link|flag

Your Answer

Get an OpenID
or

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