On Sunday 04 May 2008 23:09, Johannes Sixt wrote: > [remote "origin"] > url = R:/jsixt/something.git > > and after a 'git pull' I see this in the commit message: > > Merge branch master of 'R;C:\GIT\jsixt/something.git' > > because 'git pull' passes the configured url to git-fmt-merge-msg, at which > point bash mangles the path.
Actually, git-fmt-merge-msg does the Right Thing, but git-pull.sh stores its output in a shell variable, which it then passes as an argument to git-merge, at which time the path gets mangled. -- Hannes
