Under Windows 7 I'd like to change the settings for the Git Bash Here shell extension command window, e.g. width, height and font. But when I do this, I get an error "Unable to modify the shortcut".

I can modify the shortcut for Git Bash in the Start menu by using "Run as administrator..." This works, but only for Bash windows opened from the Start menu. It doesn't work for the "Git Bash Here" shell extension and there's no "Run as administrator..." option on right-click context menu.

How do you do it?

link|improve this question
feedback

7 Answers

up vote 6 down vote accepted

If you run git bash as administrator by right clicking on its icon and selecting "Run As Administrator" you will be able to change your settings and have them persist.

You can verify this by closing the admin session then reopening as a normal user.

I did this to set the defaults then just used git as a normal user from then on.

link|improve this answer
this worked but i had to run the Bash Shortcut icon as administrator once and it persisted the settings. – netgirlk Aug 17 '10 at 14:54
Can you tell me how to change the settings once I'm administrator? I'd like to change the font. – Franz Dec 9 '10 at 10:26
Right click on the top bar of the application and choose properties. Then there is a fonts tab. You may also want to consider a new console like sourceforge.net/projects/console – sparks Dec 15 '10 at 17:14
feedback

Unfortunately, the accepted answer offered by users sparks or bentayloruk doesn't work anymore (as of git 1.7.6 at least). The Git Bash.vbs script triggered by "Git Bash Here" doesn't execute the Git Bash shortcut any longer. It creates a temporary shortcut (.lnk) that executes the bin/sh.exe executable in the Git install dir instead. Modifying the properties (fonts, color) of either that executable (sh.exe) or the Git Bash shortcut won't help.

The fix is to edit the Git Bash.vbs script and have it execute the link again, instead of sh.exe. Look for this line:

Dim bash : bash = fso.BuildPath(gitdir, "bin\sh.exe")

and replace it with this line:

Dim bash : bash = fso.BuildPath(gitdir, "Git Bash.lnk")
link|improve this answer
^^This should be at the top. Also, don't forget to select "Defaults" instead of "Properties" from the drop down menu in order to have the settings persisted. – andrej351 Sep 8 '11 at 6:00
Sweet! Have been looking for this for a long time. I almost didn't read beyod the accepted answer. – Rudie Jan 7 at 17:15
feedback

Full Instructions

You can modify the settings applied when using the Git Bash Here context menu by doing the following:

  1. Open the Git for Windows installation folder. e.g. C:\Program Files (x86)\Git.
  2. Right click on the Git Bash shortcut file and select Run As Administrator.
  3. Click Yes if asked whether you want to give the Windows Command Processor permissions to modify the computer (otherwise your changes will not be persisted).
  4. Modify the properties as you wish (right click title bar and click properties) and then close the window.

Further Details

This works because clicking the Git Bash Here shell extension menu item runs the command wscript "C:\Program Files (x86)\Git\Git Bash.vbs" "%1". This is specified in the registry key HKEY_CLASSES_ROOT\Directory\shell\git_shell\command. This vbs file sets the current directory and then executes the Git Bash shortcut. Once you have changed the settings on this shortcut, they will always be used when this shortcut is run (regardless of being admin or not).

link|improve this answer
feedback

You could try freewares like Default Programs Editor or Context Menu Editor, and see if that allows you:

  • to edit properly the shortcut,
  • or to define a new shortcut (which behaves like you want) and register that shortcut in the contextual menu.
link|improve this answer
2  
Thanks, but surely there's a way to do this without installing 3rd party software?!?! I know it's possible because my colleague has done it, but can't remember how!!! :-)) – netgirlk Apr 12 '10 at 11:09
feedback

You can edit the shell's context menu handlers directly in the Windows Registry. The one you're looking for is probably under one of these branches:

  • HKCR\Directory\Shell\
  • HKCR\Directory\ShellEx\ContextMenuHandlers\
  • HKCR\Folder\Shell\
  • HKCR\Folder\ShellEx\ContextMenuHandlers\
  • HKCR\AllFilesystemObjects\shell\
  • HKCR\AllFilesystemObjects\shellex\ContextMenuHandlers\

Here is a lengthy article explaining what you can do there. See the second half of this article for more tips on where to look.

link|improve this answer
feedback

try going to C:\Program Files (x86)\Git or wherever you installed git and edit the git bash shortcut, the size is in the layout tab

link|improve this answer
feedback

Check out a modified "Git Bash.vbs" that uses the new method for UNC paths but the old method for local paths.

http://groups.google.com/group/msysgit/browse_thread/thread/0603d9565a988d48?pli=1

The problem I was having with Sebastien's solutions was that the bash path was always the parent of the folder I selected, which I found annoying.

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.