Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to see the shell commands executed by SmartGit?

Tags:

git

smartgit

I am pretty new to git and am learning the general flow and all the command-line options. However, sometimes I like to use the graphical interface of SmartGit in conjunction to the shell, especially if I am unsure of the best way to accomplish a flow task.

My question: Is there any way to see what git shell commands are executed by the tool. I will probably eventually execute most git actions using the shell and only use the GUI for visuals. Thus, it would be helpful to see how GUI actions translate into the actual git commands.

like image 842
mattgately Avatar asked Sep 16 '13 15:09

mattgately


People also ask

How can I see my git command history?

On GitHub.com, you can access your project history by selecting the commit button from the code tab on your project. Locally, you can use git log . The git log command enables you to display a list of all of the commits on your current branch. By default, the git log command presents a lot of information all at once.

What is shell command in git?

This is a login shell for SSH accounts to provide restricted Git access. It permits execution only of server-side Git commands implementing the pull/push functionality, plus custom commands present in a subdirectory named git-shell-commands in the user's home directory.

How do I open a git shell?

By default, the Git Shell shortcut launches PowerShell with Git set up. You can also launch the Git Shell from the Desktop GUI application by pressing the ~ key (or CTRL + ~ at any time such as when a text field has focus) or via the gear menu in the top right. Select the “Open in Git Shell” menu item.

How do I change my Smartgit master password?

By clicking on the Change Master Password button on the Authentication page in the Preferences, you can set, reset or change the master password. Use Change master password to change the current password; this will preserve the stored passwords, but requires that you supply the Current Master Password.


1 Answers

In SmartGit 18 the git shell commands are shown in the "Output Window". You show/hide said window by clicking in the "Window" menu and selecting it, as it can be seen in this image.this image

I'm adding this remark because I closed the Output Window by mistake, and the main answer of this post turned out to be of no help.

like image 149
Xavi Avatar answered Nov 15 '22 07:11

Xavi