vote up 7 vote down star

Mercurial has a way of getting to the root directory (that contains .hg) via

hg root

Is there something equivalent in git to get to the directory that contains the .git directory?

flag

4 Answers

vote up 10 vote down check

cd $(git rev-parse --show-cdup). is the closest thing I was able to find for that. It doesn't look like git itself has a way to do that.

link|flag
This is all I was able to find too; may want to alias it to git-top or something similar. – John Bellone Jun 5 at 20:40
This gives me the path to the root of the top-level/root directory, which is exactly what I was looking for. – wojo Jun 5 at 21:10
vote up 5 vote down

How about "git rev-parse --git-dir" ?

F:\prog\git\test\copyMerge\dirWithConflicts>git rev-parse --git-dir
F:/prog/git/test/copyMerge/.git

The --git-dir option seems to work.

From git rev-parse manual page:

--git-dir

    Show $GIT_DIR if defined else show the path to the .git directory.

You can see it in action in this git setup-sh script.

link|flag
Exactly what I was looking for, since it gives the absolute path. I tried to make an alias that will also cd into this directory, but that doesn't work with "cdroot = !cd $(git rev-parse --git-dir)" sadly. – wojo Jun 5 at 21:05
Oh wait, this was close but it gets the actual .git dir, not the base of the git repo. Also, the .git directory could be elsewhere, so this isn't what I was looking for exactly. – wojo Jun 5 at 21:08
1  
Right, I see now what you were actually looking for. --show-cdup is more appropriate then. I leave my answer for illustrating the difference between the two options. – VonC Jun 5 at 21:19
vote up 4 vote down

If you're already in the top-level or not in a git repository cd $(git rev-parse --show-cdup) will take you home (just cd). cd ./$(git rev-parse --show-cdup) is one way of fixing that.

link|flag
vote up 0 vote down

the man page for git-config says (under alias)

If the alias expansion is prefixed with an exclamation point, it will be treated as a shell command. For example, defining "alias.new = !gitk --all --not ORIG_HEAD", the invocation "git new" is equivalent to running the shell command "gitk --all --not ORIG_HEAD". Note that shell commands will be executed from the top-level directory of a repository, which may not necessarily be the current directory.

so on a unix system you can do

git config --global --add alias.root '!pwd'

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.