I'm using windows powershell to manage git, but am limited in that it can't seem to run the Gitk command. (At least by default)

Are there any other tools I can use from PS or is there a way I can force PS to interpret the Gitk launch script correctly?

link|improve this question

I think if you have Tcl/Tk installed, you should be able to run wish path\to\gitk. No experience with PowerShell, though. – larsmans Jul 8 '11 at 14:21
feedback

2 Answers

up vote 2 down vote accepted

Just make sure C:\Program Files (x86)\Git\bin\gitk or C:\Program Files (x86)\Git\cmd\gitk.cmd ( change as per where you installed MSYSGIT) is in PATH

link|improve this answer
This is correct! Though with PowerShell, I've actually got to type gitk.cmd in order to start the DIFF gui. I may be able to set an alias for that, but at least I've got it all in the same terminal window now. Thanks! (EDIT yes, you can set an alias to gitk.cmd, all is right with the world) – Alex C Jul 8 '11 at 17:33
feedback

I'm a big fan of using Mercurial and Tortoise HG - http://tortoisehg.bitbucket.org/ - from PowerShell. A Google came up with this link for Tortoise Githttp://code.google.com/p/tortoisegit/

HTH, Matt

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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