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? |
||||
|
|
|||||||||||||||||||||
|
|
The
So, on UNIX you can do:
|
|||||||||||||||||||
|
|
Has From the
|
|||||
|
|
If you're already in the top-level or not in a git repository |
|||
|
|
|
How about "
The From git rev-parse manual page:
You can see it in action in this |
|||||||||||||
|
|
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 |
|||
|
|
|
To amend the "git config" answer just a bit:
and get the path cleaned up. Very nice. |
||||
|
|
|
If you're looking for a good alias to do this plus not blow up
|
|||
|
|
|
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
|
|||
|
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. |
||||
|
|
|
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.
|
|||
|
|
|
|||||||
|
bzr rootwas used a lot in Bazaar – Kristopher Ives Jun 16 '12 at 20:27