I have started using Cygwin recently for other purposes and already have Git installed on my PC. I understand I can run the executable and install Git into Cygwin, but since I already have it installed I would like Cygwin to just use my Windows installation. I have tried researching how to make the path redirect in various ways but with no success, can someone help me out?
- From personal experience, I know it's actually possible to use the msysgit version of Git in Cygwin. I don't remember how off the top of my head, but I'll try to set it up and add it as an answer later.user456814– user4568142013-08-12 04:33:10 +00:00Commented Aug 12, 2013 at 4:33
- @Cupcake: I'd sure love to know how. I've spent all afternoon trying every possible permutation of setup to make that work. Cygwin's git doesn't work across network shares. Msysgit works across shares fine, but I haven't been able to make it work with Cygwin.nerdfever.com– nerdfever.com2014-12-04 03:41:32 +00:00Commented Dec 4, 2014 at 3:41
- This appears to be a duplicate of Git: Command not found Windows on Super User.jww– jww2015-06-30 21:59:25 +00:00Commented Jun 30, 2015 at 21:59
3 Answers
I confirm that git and msysgit can coexist on the same computer, as mentioned in "Which GIT version to use cygwin or msysGit or both?".
Git for Windows (msysgit) will run in its own shell (dos with
git-cmd.bator bash withGit Bash.vbs)
Update 2016: msysgit is obsolete, and the new Git for Windows now uses msys2Git on Cygwin, after installing its package, will run in its own cygwin bash shell.

- Finally, since Q3 2016 and the "Windows 10 anniversary update", you can use Git in a bash (an actual Ubuntu(!) bash).
In there, you can do a sudo apt-get install git-core and start using git on project-sources present either on the WSL container's "native" file-system (see below), or in the hosting Windows's file-system through the /mnt/c/..., /mnt/d/... directory hierarchies.
Specifically for the Bash on Windows or WSL (Windows Subsystem for Linux):
- It is a light-weight virtualization container (technically, a "Drawbridge" pico-process,
- hosting an unmodified "headless" Linux distribution (i.e. Ubuntu minus the kernel),
- which can execute terminal-based commands (and even X-server client apps if an X-server for Windows is installed),
- with emulated access to the Windows file-system (meaning that, apart from reduced performance, encodings for files in
DrvFsemulated file-system may not behave the same as files on the nativeVolFsfile-system).
- Unfortunately, it cannot invoke back into Windows executables, or
- interact with any native drivers (i.e. so no Graphic card, no USB drives yet).
2 Comments
Isn't this as simple as adding your git install to your Windows path?
E.g. Win+R rundll32.exe sysdm.cpl,EditEnvironmentVariables Edit...PATH appending your Mysysgit install path e.g. ;C:\Program Files (x86)\Git\bin. Re-run Cygwin and voila. As Cygwin automatically loads in the Windows environment, so too will your native install of Git.
Comments
call your (windows-)git with cygpath as parameter, in order to convert the "calling path". I m confused why that should be a problem.
1 Comment
git init because this command does not take an path from commandline argument.