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?

link|improve this question

Excellent addition to my answer, thank you for this feedback. – VonC Jul 4 '09 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 '09 at 19:32
feedback

2 Answers

up vote 63 down vote accepted

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|improve this answer
Your command gives me: "1 fatal: unrecognized argument: -oneline" – Masi Jun 30 '09 at 15:55
1  
Your second command gives me files.getdropbox.com/u/175564/gitTree.png – Masi Jun 30 '09 at 15:56
-oneline? did you type one '-' or two? '--oneline' – VonC Jun 30 '09 at 15:57
1  
I just tested it on my repo. It works but I am on Windows with MSysGit1.6.3. – VonC Jun 30 '09 at 15:57
6  
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 '09 at 16:50
show 10 more comments
feedback

A solution is to create an Alias in your .gitconfig and call it easily

[alias] tree = log --graph --decorate --pretty=oneline --abbrev-commit

And when you'll call it next time, u'll use

git tree

link|improve this answer
1  
Great suggestion. Didn't know a config file existed. Thanks! – milesmeow Nov 29 '11 at 2:55
1  
You're welcome :) – Marouane Nov 30 '11 at 7:30
3  
To put it in your ~/.gitconfig without having to edit it, you can do git config --global alias.tree "log --graph --decorate --pretty=oneline --abbrev-commit". (If you don't use the --global it will put it in the .git/config of your current repo.) – larsr Feb 16 at 8:41
feedback

Your Answer

 
or
required, but never shown

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