可能重复:
Is there a way to get to the git root directory in one command?
我如何检查我使用的git存储库?
我可以使用“git init
”查看结果。
git init返回“Reinitialized existing Git repository in c:/Users/k-9/.git/
”
但我认为git init不是一个合适的命令。
答案 0 :(得分:4)
git rev-parse --show-toplevel
将显示存储库的顶级目录。
$ git rev-parse --show-toplevel
fatal: Not a git repository (or any of the parent directories): .git
$ cd gitrepo
$ git rev-parse --show-toplevel
/home/jamessan/gitrepo