Mercurial has a way of printing the root directory (that contains .hg) via
hg root
Is there something equivalent in git to get the directory that contains the .git directory?
|
Mercurial has a way of printing the root directory (that contains .hg) via
Is there something equivalent in git to get the directory that contains the .git directory?
| ||||
|
feedback
|
|
| |||||||||||||||||
feedback
|
|
Has From the
| |||
|
feedback
|
|
the man page for git-config says (under alias)
so on a unix system you can do
| |||||||||||
feedback
|
|
If you're already in the top-level or not in a git repository | |||
|
feedback
|
|
How about "
The From git rev-parse manual page:
You can see it in action in this | |||||||||||||
feedback
|
|
To amend the "git config" answer just a bit:
and get the path cleaned up. Very nice. | |||
|
feedback
|
|
To calculate the absolute path of the current git root directory, say for use in a shell script, use this combination of readlink and git rev-parse:
You could also create a
(The above can be pasted into a terminal to create git-root and set execute bits; the actual script is in lines 2, 3 and 4.) And then you'd be able to run | |||
|
feedback
|
|
As others have noted, the core of the solution is to use
As other answers have noted, we can do Many shells treat A solution that works in all of the above cases requires a test of some sort. Done explicitly, it might look like this:
No If it is acceptable to run
| |||
feedback
|
|
Had to solve this myself today. Solved it in C# as I needed it for a program, but I guess it can be esily rewritten. Consider this Public Domain.
| |||
|
feedback
|
|
Good script Emil. I make the script available online, and allowed the possibility to add a file/directory as argument. http://github.com/Dieterbe/git-scripts/commit/3b7be5e25052e99d9be8ca7d9e6d5c91f8c2a14a | |||
|
feedback
|
|
alias git-root='cd `git rev-parse --git-dir`; cd ..' Everything else fails at some point either going to the home directory or just miserably failing. This is the quickest and shortest way to get back to the GIT_DIR. | ||||
|
feedback
|