I am using git v 1.7.4.msysgit.0 on windows.

I want to print the output of gitK(i mean physically on a paper)

I cant find a print menu there, google doesn't help here too.

link|improve this question

75% accept rate
what output do you need? if you need the graph, could you try git log --graph? – fajran Feb 17 at 8:54
I need to print the graph using my printer – Archan Mishra Feb 18 at 7:06
feedback

2 Answers

up vote 1 down vote accepted

As mentioned in "Pretty git branch graphs", gitk has no print function (2009, still true in 2012 as far as I know).

The only solution being to capture part of the gitk window you are interested, but that won't capture all the history displayed by gitk.
Even a non-free Git Windows client like SmartGit doesn't seem to have that feature...

link|improve this answer
Note: not found either in TortoiseGit or Egit... – VonC Feb 17 at 9:34
feedback
git log --graph --all --decorate

should give you textual representation of your repo. Add --oneline if you want a condensed version.

link|improve this answer
Don't forget to set your LESS variable: stackoverflow.com/questions/1064361/… – VonC Feb 17 at 9:47
@Adam I dont need a pretty log, i need the graphical print – Archan Mishra Feb 18 at 7:09
feedback

Your Answer

 
or
required, but never shown

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