Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Killswitchcollective.com's old article, 30 June 2009, 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?

share|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
Can you please update or remove the link from the first line in you question? – sjas Jul 5 '12 at 11:38
2  
@sjas link restored – VonC Jul 6 '12 at 13:43

3 Answers

up vote 133 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

git log graph

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.

share|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
1  
-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
8  
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

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

share|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
20  
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 '12 at 8:41
git log --oneline --decorate --all --graph

A visual tree with branch names included.

share|improve this answer
2  
Do you need two --decorate flags? – rfcoder89 Mar 21 at 21:38
@frcoder, I have removed the duplicated flag. – Bennett McElwee Apr 9 at 23:56
Oops - well spotted :) – Underworld Apr 10 at 15:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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