mirror of
https://github.com/git/git.git
synced 2026-02-07 00:05:02 +00:00
Merge pull request #175 from kasal/normalize-win-paths
fixup! Windows: Always normalize paths to Windows-style
This commit is contained in:
@@ -306,8 +306,10 @@ case $(uname -s) in
|
||||
find () {
|
||||
/usr/bin/find "$@"
|
||||
}
|
||||
# Let pwd always return the uniqe real windows path
|
||||
alias pwd='pwd -W'
|
||||
# git sees Windows-style pwd
|
||||
pwd () {
|
||||
builtin pwd -W
|
||||
}
|
||||
is_absolute_path () {
|
||||
case "$1" in
|
||||
[/\\]* | [A-Za-z]:*)
|
||||
|
||||
Reference in New Issue
Block a user