Did someone experience this?
$ echo "import sys; print(sys.argv)" > test.py
$ python test.py test /dev/de
['test.py', 'test', 'C:/Program Files/Git/dev/de']
Gitbash is adding the C:/Program Files/Git
prefix when the command argument is a posix path, for my case the workaround is to use double slash //dev/de
, but I am wondering if that is a misconfiguration or if it could be solved somehow.