Matthieu Moy <Matthieu.Moy@xxxxxxx> writes: > Junio C Hamano <junkio@xxxxxxx> writes: > >> get_repo_base() { >> - (cd "$1" && (cd .git ; pwd)) 2> /dev/null >> + ( >> + cd "`/bin/pwd`" && >> + cd "$1" && >> + ( >> + cd .git >> + pwd >> + ) >> + ) 2>/dev/null >> } > > Will this work on windows? Is that a serious question? If so, my answer is "I do not know, but the update is not any more complex than the existing code -- both are perfectly fine POSIX shell". Besides, if there are enough users who care about Windows, there must be some competent ones among them, and we will hear from them soon enough with an improvement patch. If not, welcome to my killfile ;-). NB. No, the last one is not serious. I do not have a killfile. - 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