I have a git repo I've been using for the last year on the same box. Today I run git status and get the error message:

fatal: Not a git repository (or any parent up to mount parent /home)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).

I have a .git directory and it's populated with the thousands of commits I have for that repo. I don't want to re-initialize the repo in fear that it'll overwrite the history. I also don't really want to re-pull it from github as I've got a few changes stashed in branches that I haven't pushed up to GH in a while.

edit:

I'm reasonably sure it's not my environment. Other git repos are working just fine

link|improve this question

How about doing a git clone into a temp directory and do the merging of the stashed changes manually? – Fredrik Jun 7 '11 at 17:52
What does it say if you 'cd .git' and do 'git log'? – karmakaze Jun 7 '11 at 17:59
@karmakaze I get the same error message @Fredrick thanks for the suggestion. I'd like to see if there is some filesystem/git wizardry I can do before I jump in to manually copying – Bryce Jun 7 '11 at 18:04
sorry about your repo. I was about to mention if you used different versions of git which support different repo formats on the filesystem. Maybe worth trying the latest git before giving up. – karmakaze Jun 8 '11 at 21:09
feedback

3 Answers

up vote 5 down vote accepted

I would like to post some comments from the appropriate source file of git:

Git repo discovery is done as per below:

/*
 * Test in the following order (relative to the cwd):
 * - .git (file containing "gitdir: <path>")
 * - .git/
 * - ./ (bare)
 * - ../.git
 * - ../.git/
 * - ../ (bare)
 * - ../../.git/
 *   etc.
 */

And it ascertains that it is a git repo as below:

/*
 * Test if it looks like we're at a git directory.
 * We want to see:
 *
 *  - either an objects/ directory _or_ the proper
 *    GIT_OBJECT_DIRECTORY environment variable
 *  - a refs/ directory
 *  - either a HEAD symlink or a HEAD file that is formatted as
 *    a proper "ref:", or a regular file HEAD that has a properly
 *    formatted sha1 object name.
 */

See what's wrong with your .git. This ties in with @Chris Nicola 's answer of the HEAD being lowercase etc.

link|improve this answer
good call. Looks like my objects directory got corrupted... /sigh . Thanks @manojilds. – Bryce Jun 7 '11 at 23:17
feedback

It's hard to say the exact cause but your .git must be corrupted somehow. There is a blog post here where some guy had his HEAD file renamed to all lowercase on his system somehow which caused that problem for him. Not saying that is your particular problem but you may want to look closer at the .git folder.

You could try to checkout from github in a new folder and then compare the two .git folders for differences.

link|improve this answer
1  
If this turns out NOT to be the problem for the OP I highly suggest you create a new question and then respond with this as your answer. This should be high enough so anyone searching for Git problems can find it. Very useful information. – Andrew Finnell Jun 7 '11 at 18:22
I'll consider that, never actually had it happen to me, but I could see it being a good Windows troubleshooting step, though not too many people use FAT/VFAT systems so I don't know how often this would really happen. – Chris Nicola Jun 7 '11 at 21:06
feedback

Clone anyway to another directory. You can copy the object from the .git dir in the original repo with the stashes to the .git folder in the new repo. Skip any files that would be overwritten. You should be able to then copy the stash pointers and gitk --all should show you them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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