views:

139

answers:

1

It doesn't look like git-p4 is part of the MSys-Git project for Windows. Does anybody know how to get it running through Windows?

+3  A: 

As mention in "Why Perforce is more scalable than Git", be careful to not import in Git any p4 repo. Git cannot handle the same kind of huge unique repo P4 can manage.

Git-P4 being in Python, it should run on Windows (like in this question)

You can grab it here (the is a git-p4.bat in it)

@python "%~d0%~p0git-p4" %*

It requires a Python installed.

Don't forget there is another approach as well.

VonC
Thanks Von, I got everything working ;)
Michael Brennan