I've been using Git on both Windows and Ubuntu during the development of a small project, frequently flipping back and forth between the two. The issue I'm having is that Git/Bash consistently become slow. When I say slow, I mean that running cd takes anywhere from 8-25 seconds, running git commands take from 5-20 seconds, and ls can take up to 30 seconds sometimes. Needless to say, this is not fun, not to mention unproductive. I know Git is slower on Windows, but this is ridiculous.

The one solution which has worked--temporarily--for me has been to disable my network connection (as suggested in this answer), start git, and then reconnect. Sometimes it continues to run quickly for days after doing that, but the performance always degrades eventually. I've trawled through the msysgit discussion group, SO, msysgit issue list, etc. on and off for weeks, but I haven't been able to turn up solutions which work.

So far, I've tried:

  • Adding git & project folders to virus scanner's exclusion list
  • Disabling my virus scanner completely (Kaspersky IS 2011)
  • Ensuring that Outlook is not running (Outlook 2007)
  • Shutting down all other applications
  • Running git as administrator
  • Disabling network connection, starting git, and keeping connection disabled
  • Disabling network connection, starting git, re-enabling connection (works only occasionally)
  • Running git gc
  • And combinations of the above

I did read that a couple people had success disabling bash completion, but ideally I'd like to keep that active. The version of msysgit is 1.7.3.1-preview20101002 & the OS is Windows 7 x64. Running the same things on Linux is, predictably, lightning fast. I would use Linux exclusively, but I need to run stuff in Windows, too (certain apps, testing, etc.).

Has anyone encountered a similar issue? If so, what was the underlying problem and what was the solution (if any)?

Edit: This extends beyond just the git repositories, but just for reference, the repos I've been using git with have been pretty small: ~4-50 files max.

link|improve this question

Are other programs running slowly? What's the memory usage like? BTW, this might belong on superuser or programmers.SO – Robert Dec 19 '10 at 21:08
Nope, all other programs are running just as fast as before. I haven't kept track of the memory usage religiously, but it seems to be in the same range whether it's running fast or slow. – Gemini14 Dec 19 '10 at 21:14
Not to discourage you but Cygwin is very slow on x64, you better try it on Windows XP 32bit. – İsmail 'cartman' Dönmez Dec 19 '10 at 21:22
feedback

4 Answers

Do you have Git information showing in your Bash prompt? If so, maybe you're inadvertently doing way too much work on every command. To test this theory try the following temporary change in Bash:

export PS1='$'
link|improve this answer
After making that change, changing directories became an instant op and ls is down to about 6 seconds. Git is noticeably faster as well, down to about 6 seconds for branch and status for example, instead of 10-15 seconds. – Gemini14 Dec 20 '10 at 0:22
@Gemini14 - Good. That means that your Bash shell was configured to do some excessive work in the shell prompt. You'll want to tweak your ~/.bashrc or ~/.login to make the change permanent. Still, a 6 second ls is crazy slow, so there's still something quite wrong with your machine. I recommend playing with some of the SysInternals tools on your Windows box to watch what files are being opened. technet.microsoft.com/en-us/sysinternals/default – Chris Dolan Dec 20 '10 at 1:58
@Chris Dolan I didn't spot any strange files being opened up, but I did notice that when running any git commands or ls, multiple bash child processes (sh.exe) opened up (anywhere from 2 to 4). I have no idea if that is normal behavior, but commands which are slow seem to open more child processes. – Gemini14 Dec 20 '10 at 4:26
@Gemini14 - that's not good. Definitely not normal! Other than the bash prompt, I can't think of any reason why that would happen. Just to nail this down, can you post the PS* variables when you type set at the bash prompt? – Chris Dolan Dec 20 '10 at 20:03
@Chris Dolan Sure thing, PS1 = '$', PS2 = '> ', PS4 = '+ ', and PSMODULEPATH = 'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\'. The PS1 variable is what shows after making the original change you mentioned earlier. – Gemini14 Dec 21 '10 at 0:47
show 1 more comment
feedback
up vote 2 down vote accepted

It appears that completely uninstalling Git, restarting (the classic Windows cure), and reinstalling Git was the cure. I also wiped out all bash config files which were left over (they were manually created). Everything is fast again.

If for some reason reinstalling isn't possible (or desirable), then I would definitely try changing the PS1 variable referenced in Chris Dolan's answer; it resulted in significant speedups in certain operations.

link|improve this answer
Reinstalling without restart did not work, uninstall-restart-install worked. Thanks! It would be nice to know why and how bash got so slow, though. – Gauthier May 5 '11 at 6:46
Re-installing with reboot in-between made no difference for me. – RyanW Sep 12 '11 at 2:28
@RyanW I'm afraid I can't help beyond the solution above that worked for me, but since this issue doesn't seem to be permanently fixed yet, you might want to get in touch with msysgit's maintainers and see if they can figure out the cause of this issue. – Gemini14 Sep 12 '11 at 2:46
feedback

My Windows home directory is on the network, and I suspected that Git Bash commands were looking there first. Sure enough, when I looked at $PATH, it listed /h/bin first, where /h is a share on a Windows file server, even though /h/bin doesn't exist. I edited /etc/profile and commented out the export command that puts it first in $PATH:

#export PATH="$HOME/bin:$PATH"

This made my commands run much faster, probably because Git Bash is no longer looking across the network for the executables. My /etc/profile was c:\Program Files (x86)\Git\etc\profile.

link|improve this answer
I had the same issue. I changed HOME="$(cd "$HOME" ; pwd)" to HOME="$(cd "$USERPROFILE" ; pwd)", and now everything is blazingly fast. Thanks for the tip. – Jon Sagara Oct 6 '11 at 18:06
I was successful using a variation of this: in the profile, force $HOME to $USERPROFILE, removing the $HOMEDRIVE reference. Also on the properties of the Git Bash shortcut, set "Start In" to %USERPROFILE% – Aidan Ryan Dec 7 '11 at 21:24
feedback

I solved my slow git problem on Win 7 x64 by starting cmd.exe with "Run as administrator".

link|improve this answer
The question talks about git bash. – manojlds Oct 28 '11 at 1: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.