-----Original Message----- From: Ramsay Jones [mailto:ramsay@xxxxxxxxxxxxxxxxxxx] > Hi Björn, > I had the same problem. However, rather than modifying git, I created a > firefox wrapper script (in ~/bin) which used the cygpath command line > tool to do the path conversion. Also, if you use "git instaweb", you > also need to filter out http URLs and pass them through un-molested > by cygpath (it turns http://localhost into http:\localhost). > My script is clearly a "quick hack" just to get something working for > me, but you may find it useful as a starting point for your own > ("proper" ;-) script, so I've included it below. > HTH, > Ramsay Jones Hi Ramsay, thanks for this idea. I solved the problem by using the bash script included below. Cheerz, Steffen >sj #!/bin/sh # ff="/cygdrive/c/Programme/Mozilla Firefox/firefox.exe" while test $# != 0 do case "$1" in -version) echo $("$ff" "-version") exit 0 ;; -new-tab) p= case "$2" in http*) p="$2" ;; *) # check if file exists if [ -e "$2" ] then p="$(cygpath -w "$2")" fi ;; esac # check if $p has been set, otherwise exit with error if [ "$p" ] then $("$ff" "$p") exit 0 else exit 1 fi ;; esac shift done exit 1 -- Steffen Jaeckel Steinbeis-Transferzentrum/Steinbeis-Innovationszentrum Embedded Design und Networking an der Berufsakademie Lörrach Poststraße 35, 79423 Heitersheim Leiter: Prof. Dr.-Ing. Axel Sikora Phone: +49 7634 6949341 Mob : +49 170 2328968 Fax : +49 7634 5049886 www.stzedn.de HINWEIS Das Steinbeis Transferzentrum Embedded Design und Networking (stzedn) an der Dualen Hochschule Baden-Württemberg/Berufsakademie Lörrach wird vom 3.-5.3.2009 auf der Embedded World 2009 in Nürnberg mit einem Stand vertreten sein. Bitte besuchen Sie uns in Halle 12 Stand 322h. Zentrale: Steinbeis GmbH & Co. KG für Technologietransfer Willi-Bleicher-Straße 19, 70174 Stuttgart Registergericht Stuttgart HRA 12 480 Komplementär: Steinbeis-Verwaltung-GmbH, Registergericht Stuttgart HRB 18715 Geschäftsführer: Prof. Dr. Heinz Trasch, Prof. Dr. Michael Auer Der Inhalt dieser E-Mail einschließlich aller Anhänge ist vertraulich und ausschließlich für den bezeichneten Adressaten bestimmt. Wenn Sie nicht der vorgesehene Adressat dieser E-Mail oder dessen Vertreter sein sollten, so beachten Sie bitte, dass jede Form der Kenntnisnahme, Veröffentlichung, Vervielfältigung oder Weitergabe des Inhalts dieser E-Mail unzulässig ist. Wir bitten Sie, sich in diesem Fall mit dem Absender der E-Mail in Verbindung zu setzen, sowie die Originalnachricht zu löschen und alle Kopien hiervon zu vernichten. This e-mail message including any attachments is for the sole use of the intended recipient(s) and may contain privileged or confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please immediately contact the sender by reply e-mail and delete the original message and destroy all copies thereof. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html