On Sun, June 7, 2009 16:33, Johannes Schindelin wrote: > Hi, > > this mail informs you that Git for Windows 1.6.3.2 is out. Soon is the > time that we switch to git.git's master. > > - The user home directory is inferred from $HOMEDRIVE\$HOMEPATH instead of > $HOME (Issue 108). this does not work for me. win xp sp3, 32bits with this patch it is fixed/reverted: --- Program Files/Git/etc/profile.org 2009-06-08 12:31:29.968750000 +0200 +++ Program Files/Git/etc/profile 2009-06-08 12:31:16.718750000 +0200 @@ -29,7 +29,7 @@ # Set up USER's home directory if [ -z "$HOME" -o ! -d "$HOME" ]; then - HOME="$HOMEDRIVE$HOMEPATH" + HOME="$USERPROFILE" fi if [ ! -d "$HOME" ]; then -- 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