> -----Original Message----- > From: git-ow...@vger.kernel.org <git-ow...@vger.kernel.org> On Behalf Of > Junio C Hamano > Sent: November 18, 2018 19:07 > To: Torsten Bögershausen <tbo...@web.de> > Cc: Steven Penny <svnp...@gmail.com>; git@vger.kernel.org > Subject: Re: Cygwin Git with Windows paths > > Torsten Bögershausen <tbo...@web.de> writes: > > > And it may even be that we need a special handling for the "\" to be > > treated as "/". > > I do not do Windows, but is_dir_sep() needs to be tweaked if you want to do > that.
Heavy Cygwin user here. It is used in my environment for cross-compilation. Everything should be done using / separators in Cygwin, not \. So /cygdrive/c, /cygdrive/d always prefaces the path rather than C:\ or D:\, which won't parse. It is, essentially, a bash environment, including that git completions work properly. Backslash ends up doing what it would in bash.