如何到达目录的根目录


0

我试图用bash编译一个包,github中的指令说:

切换到Phrasal存储库的根目录并执行:gradle installDist

我尝试使用“hg root”确定root。但我得到的输出为

中止:在'/ mnt / f / Projects / phrasal'中找不到存储库(找不到.hg)!

如何找到目录短语的根目录?谢谢!!!


/mnt/f/Projects/phrasalgithub存储库的克隆吗?如果是这样,那么你需要运行git rev-parse --show-toplevel以获取git存储库的根目录。
MikeK

Answers:


1

根目录是层次结构中的第一个或最顶层的目录。

尝试这个:

cd /mnt/f/Projects/phrasal

然后

gradle installDist
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.