On Thu, May 1, 2008 at 4:03 PM, Scott Graham <[EMAIL PROTECTED]> wrote:
>
> I'm having problems getting gvim to be launched properly. The only
> thing I've modified from
> http://msysgit.googlecode.com/files/Git-1.5.5-preview20080413.exe
> is to change the exit to exit /b in git.cmd.
git.cmd stomps the path. Try changing the line
for /F "delims=" %%I in ("%~dp0..") do set path=%%~fI\bin;%%~fI\mingw\bin
to
for /F "delims=" %%I in ("%~dp0..") do set path=%%~fI\bin;%%~fI\mingw\bin;%PATH%
(I hope that doesn't wrap too badly)
After that change, I can
git config core.editor gvim
and it seems to work for me. Take that with a grain of salt; I'm still
a couple of previews back.
Peter Harris