I am trying to configure git p4 on windows. I have installed git bash, python and p4 and am able to access them on cmd prompt. But can't get
git p4
command to work. It throws error -
"fatal: 'p4' appears to be a git command, but we were not able to execute it. Maybe git-p4 is broken?"
Git Installed At - C:\Git\bin
Python At- C:\Python37-32
I have also kept git-p4.py file under git\bin and under \git-core. Also, there is a file called git p4 inside the \git-core foler.
Here are the contents of gitconfig under : C:\Git\mingw64\etc
[http]
sslCAInfo = C:/Git/mingw64/ssl/certs/ca-bundle.crt
sslBackend = openssl
[diff "astextplain"]
textconv = astextplain
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[credential]
helper = manager
[p4]
p4 = !'C:\\Git\\bin\\git-p4.py'
What's wrong here ?