Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git Bash operate with cygwin

Tags:

git

cygwin

I installed Git-Bash but I won't be able to access all the tools(vim,vimdiff) that I can access with Cygwin. Can that be set in one of the Git config files?

like image 734
user2066671 Avatar asked Jul 01 '13 21:07

user2066671


1 Answers

Git bash, and related tools in msysgit package, are pure Windows executables.

That's why you cannot run Cygwin tools into Git bash, since these are not completely windows programs (they need the cygwin.dll, see @fvu comment below).

If you want to use Git with Cygwin tools, you have to install the git package for Cygwin.

like image 137
Guillaume Darmont Avatar answered Sep 22 '22 04:09

Guillaume Darmont