summaryrefslogtreecommitdiff
path: root/git-sh-setup.sh
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>2012-04-17 18:48:39 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-04-18 20:06:19 (GMT)
commitbe39048a7385157e4b7baabd3e64fe186b428ea1 (patch)
tree5881c3e69f282d6a3a715292cdd768f83e8d4f27 /git-sh-setup.sh
parente8dde3e5f9ddb7cf95a6ff3cea6cf07c3a2db80d (diff)
downloadgit-be39048a7385157e4b7baabd3e64fe186b428ea1.zip
git-be39048a7385157e4b7baabd3e64fe186b428ea1.tar.gz
git-be39048a7385157e4b7baabd3e64fe186b428ea1.tar.bz2
git-sh-setup.sh: Add an pwd() function for MinGW
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Acked-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-sh-setup.sh')
-rw-r--r--git-sh-setup.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/git-sh-setup.sh b/git-sh-setup.sh
index 5d8e4e6..7b3ae75 100644
--- a/git-sh-setup.sh
+++ b/git-sh-setup.sh
@@ -248,6 +248,10 @@ case $(uname -s) in
find () {
/usr/bin/find "$@"
}
+ # git sees Windows-style pwd
+ pwd () {
+ builtin pwd -W
+ }
is_absolute_path () {
case "$1" in
[/\\]* | [A-Za-z]:*)