Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I see what commands git-gui is executing?

Tags:

git

git-gui

Is there a way to see what commands git-gui is executing? Either in some status bar, or log perhaps? That would be really useful for learning the command line better.

like image 975
wisbucky Avatar asked Aug 27 '13 19:08

wisbucky


2 Answers

Yes. git-gui accepts a --trace option which will make it print each git command it executes on stderr. If you are running on Windows where there is no stderr, then it also shows the Tk console and this output is visible there. On Windows you can also show the console with Ctrl-F2 even without the --trace option if you want to do some debugging on the running application. On other systems, stderr will appear in the console window you launched the application from. If you used a desktop icon or shortcut, you might want to start a terminal window and start it manually to see the output (unix or macos).

like image 119
patthoyts Avatar answered Oct 02 '22 00:10

patthoyts


I created a desktop shortcut to point to the version control directory I work with most of the time:

"C:\Program Files\Git\cmd\git-gui.exe" "--working-dir" "C:\my\version\control\directory" "--trace"

like image 32
MikeMJV Avatar answered Oct 02 '22 00:10

MikeMJV