Git Bash` /`目录在哪里?


4

当我在Windows 7上打开Git Bash时,默认目录是 /。它有* nix风格的子目录,和 cd .. 不会更改目录。我的Windows机器上的这个目录在哪里?

目录 C:\Program Files\Git\ 有类似的内容,除了 / 有个 proc 子目录,和 C:\Program Files\Git\ 没有。

我放 dir /s /a git-bash.execmd.exe,它只提出了 git-bash.exeC:\Program Files\Git,没有其他人(比如 / )。


4
试试跑步 mount 在bash shell中。
DavidPostill


@LazyBadger好吧根据Git Bash Properties(我右键点击Git Bash),它开始于 C:\Program Files\Git\ 。这仍然无法回答原因 / 有个 proc 子目录和 C:\Program Files\Git\ 没有。你知道吗?
Joshua Meyers

@DavidPostill谢谢,这也证实了这一点。 mount 给出了这条线: C:/Program Files/Git on / type ntfs (binary,noacl,auto)。但为什么呢 / 有一个 proc 子目录 C:\Program FIles\Git\ 没有呢?
Joshua Meyers

再次: tldp.org/LDP/Linux-Filesystem-Hierarchy/html/proc.html /proc 非常特别,因为它也是一个 虚拟文件系统 。它有时被称为进程信息伪文件系统。 它不包含“真实”文件 但是运行时系统信息(例如系统内存,安装的设备,硬件配置等)。“
Lazy Badger

Answers:


-2

echo %USERPROFILE% 要么 echo %HOME%


4
请通过解释它与OP问题的相关性来改进这个答案。
dinosaur
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.