MSYSGIT version: 2.6.4 If I run the following command in git-bash terminal on my windows pc: ``` docker run -ti --rm -v "/c/Users/igor/Documents/Mikogo4:/app" buildpack-deps:jessie bash ``` bash thinks I used paths in Unix format, so it translates them to windows format which is unwanted in this case, and I get the error: ``` invalid value "C:\\Users\\igor\\Documents\\Mikogo4;C:\\software\\Git\\app" for flag -v ``` Is there is a way to suppress the automatic path translation?