after having moved my repositories from one disk to another today I got the following answer for all the repositories:
$ git status
fatal: Not a git repository (or any of the parent directories): .git
Now, all my git stuff is there in the repository:
$ ls -al
total 8
drwx------ 1 luca luca 0 2011-12-12 10:36 .
drwx------ 1 luca luca 4096 2012-01-02 09:49 ..
drwx------ 1 luca luca 4096 2011-12-12 10:36 .git
drwx------ 1 luca luca 0 2011-12-12 10:36 img
$ du -hs .git/*
0 .git/branches
0 .git/hooks
0 .git/info
12K .git/logs
58K .git/objects
0 .git/refs
So I guess git is somehow confused about something, maybe a permission that is not correct. Any idea about how to restore all my repositories history?
strace git statuswill give you the answer. – David Schwartz Jan 2 '12 at 11:24stat(".git", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 access(".git/objects", X_OK) = 0 access(".git/refs", X_OK) = 0 lstat(".git/HEAD", 0x7fffd0a72f90) = -1 ENOENT (No such file or directory) access("./objects", X_OK) = -1 ENOENT (No such file or directory)and the first .git/objects is succesfull, the others no. – fluca1978 Jan 2 '12 at 11:57