git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] On Cygwin support both UNIX and DOS style path-names
@ 2011-07-25 17:27 Pascal Obry
  0 siblings, 0 replies; 4+ messages in thread
From: Pascal Obry @ 2011-07-25 17:27 UTC (permalink / raw)
  To: git; +Cc: Pascal Obry

In fact Cygwin supports both, so make Git agree with this.
The failing case is when a file is committed in a sub-dir of the
repository using a log message from a file specified with a DOS
style path-name. To reproduce:

   $ cd src
   $ git commit -F c:\tmp\log.txt file.c
   fatal: could not read log file 'src/c:\tmp\log.txt': No such file \
   or directory.

Signed-off-by: Pascal Obry <pascal@obry.net>
---
 compat/cygwin.h |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/compat/cygwin.h b/compat/cygwin.h
index a3229f5..de9737c 100644
--- a/compat/cygwin.h
+++ b/compat/cygwin.h
@@ -7,3 +7,6 @@ extern stat_fn_t cygwin_lstat_fn;
 
 #define stat(path, buf) (*cygwin_stat_fn)(path, buf)
 #define lstat(path, buf) (*cygwin_lstat_fn)(path, buf)
+
+#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
+#define is_dir_sep(c) ((c) == '/' || (c) == '\\')
-- 
1.7.6.345.g5c2f8

^ permalink raw reply related	[flat|nested] 4+ messages in thread
* Re: [PATCH] On Cygwin support both UNIX and DOS style path-names
@ 2011-07-27 15:57 Theo Niessink
  2011-07-28  9:28 ` Pascal Obry
  0 siblings, 1 reply; 4+ messages in thread
From: Theo Niessink @ 2011-07-27 15:57 UTC (permalink / raw)
  To: git, pascal

Pascal Obry wrote:
> In fact Cygwin supports both, so make Git agree with this.

Why not indeed, especially since both are already supported under MinGW.

> +#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
> +#define is_dir_sep(c) ((c) == '/' || (c) == '\\')

I think that by defining is_dir_sep you enable DOS/Windows style paths
throughout Git, so you might want to check compat/mingw.h for other, related
changes. You will probably at least want the MinGW version of
find_last_dir_sep as well, because the default find_last_dir_sep doesn't use
is_dir_sep.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-07-28 10:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-25 17:27 [PATCH] On Cygwin support both UNIX and DOS style path-names Pascal Obry
  -- strict thread matches above, loose matches on Subject: below --
2011-07-27 15:57 Theo Niessink
2011-07-28  9:28 ` Pascal Obry
2011-07-28 10:44   ` Theo Niessink

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).