]> git.ipfire.org Git - thirdparty/git.git/commit - cache.h
Windows: Treat Windows style path names.
authorJohannes Sixt <johannes.sixt@telecom.at>
Wed, 5 Mar 2008 20:51:27 +0000 (21:51 +0100)
committerJohannes Sixt <johannes.sixt@telecom.at>
Mon, 23 Jun 2008 11:30:22 +0000 (13:30 +0200)
commit25fe217b86ca40c53e710d776e120dfa0d81f60b
tree17d027b37da265e44e48bf01f872cf20c1e6d931
parent4cd148d83f852363363e921c4925e67601654ff6
Windows: Treat Windows style path names.

GIT's guts work with a forward slash as a path separators. We do not change
that. Rather we make sure that only "normalized" paths enter the depths
of the machinery.

We have to translate backslashes to forward slashes in the prefix and in
command line arguments. Fortunately, all of them are passed through
functions in setup.c.

A macro has_dos_drive_path() is defined that checks whether a path begins
with a drive letter+colon combination. This predicate is always false on
Unix. Another macro is_dir_sep() abstracts that a backslash is also a
directory separator on Windows.

Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
cache.h
compat/mingw.c
compat/mingw.h
git-compat-util.h
setup.c