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.bat
or bash withGit Bash.vbs
)
Update 2016: msysgit is obsolete, and the new Git for Windows now uses msys2 -
Git 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
DrvFs
emulated file-system may not behave the same as files on the nativeVolFs
file-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).