命令我使用的是什么git存储库

时间:2011-10-07 13:08:23

标签: git github

  

可能重复:
  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不是一个合适的命令。

1 个答案:

答案 0 :(得分:4)

如果您的工作目录是git存储库,

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