Re: Using Git with windows
From: Dmitry Potapov <hidden>
Date: 2016-06-15 22:46:20
On Fri, Mar 6, 2009 at 5:38 PM, Tim Visher [off-list ref] wrote:
IMHO, Git under cygwin's pretty nice. I tried using MSysGit as well and didn't feel like it was quite as good as just building Git under cygwin. I also run Git on an Mac at home and while it's clearly faster, Git under Cygwin still beats the pants off of SVN under Cygwin.
If I am not mistaken Git 1.6.1 should work about twice faster under Cygwin than previous versions with such common operations as "git diff", "git status", because it avoids emulation of stat() in most common cases...
quoted
But is there a way around this if i run a linux VM with Git running and mount a windows ntfs partition ?Would this really be faster? I don't have a whole lot of experience with virtualization, but isn't Cygwin 'basically' doing this already?
No, Cygwin works very differently... In some cases, Cygwin will work faster, but there are operations that are very costly under Cygwin such as fork(). So, what is faster depends on what you do, and there are many other factors here such available memory or present some antivirus programs, which can kill performance... But, in general, if you work on Windows, it makes much more sense to Cygwin or MSysGit than running Git under VmWare... Dmitry