本文介绍了如何在Git Bash中使用Windows网络路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

网络资源的路径在Windows中用\\servername\share\path\to\folder语法表示.如何在使用Unix样式路径的Git Bash中使用这样的文件夹?

Paths to network resources are denoted in Windows with the \\servername\share\path\to\folder syntax. How does one use such a folder within Git Bash, which uses Unix-style paths?

推荐答案

实际上只是cd //servername/share/path/to/folder,其中//servername/之后是至少一个共享文件夹.

Actually just cd //servername/share/path/to/folder where //servername/ is followed by at least one shared folder.

这篇关于如何在Git Bash中使用Windows网络路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 13:49