git p4: temp branch name should use / even on windows
authorPete Wyckoff <pw@padd.com>
Sun, 27 Jan 2013 03:11:04 +0000 (22:11 -0500)
committerJunio C Hamano <gitster@pobox.com>
Sun, 27 Jan 2013 06:00:38 +0000 (22:00 -0800)
commit4f9273d27b399c9b6e0be372e607b9a8176c0699
tree54f453203cfb937fedf453a3fc606bb4f2bc64f6
parent50a6b54c03219ad74b9f3f839e0321be18daeaf6
git p4: temp branch name should use / even on windows

Commit fed2369 (git-p4: Search for parent commit on branch creation,
2012-01-25) uses temporary branches to help find the parent of a
new p4 branch.  The temp branches are of the form "git-p4-tmp/%d"
for some p4 change number.  Mistakenly, this string was made
using os.path.join() instead of just string concatenation.  On
windows, this turns into a backslash (\), which is not allowed in
git branch names.

Reported-by: Casey McGinty <casey.mcginty@gmail.com>
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-p4.py