在Git for windows "git bash"中,如何"print working directory" in Windows cmd和Windows explorer可用的路径格式?

In Git for windows "git bash", how to "print working directory" in Windows path format that is usable by cmd and Windows explorer?

当Windows "git bash" on Windows使用Git时,如何在Windows路径表示中方便地打印工作目录,例如

D:\foo\bar

类似于使用 'pwd' 获取 Unix 表示

/d/foo/bar/

以便 Windows 资源管理器和 cmd 控制台可以读取该路径?

在Git Bash:

$ cmd //c cd
C:\Program Files\Git

注意双斜杠。对于正斜杠,如评论中所述:

$ pwd -W
C:/Program Files/Git