Hello, might that be related to the problem: lstat64("profiles/icpc", 0xFFBFF350) Err#2 ENOENT => mkdir("profiles", 0777) = 0 stat64(".git/objects/66/6197b02f46c92f0273f16ac77d34d76b28f4f0", 0xFFBFF088) = 0 open64(".git/objects/66/6197b02f46c92f0273f16ac77d34d76b28f4f0", O_RDONLY) = 4 mmap64(0x00000000, 284, PROT_READ, MAP_PRIVATE, 4, 0) = 0xFF230000 close(4) = 0 munmap(0xFF230000, 284) = 0 open64("profiles/icpc", O_WRONLY|O_CREAT|O_EXCL, 0666) = 4 open64("profiles/.gitattributes", O_RDONLY) Err#2 ENOENT write(4, " # I C P C P r o f i".., 420) = 420 close(4) = 0 lstat64("profiles/sithglan", 0xFFBFF350) Err#2 ENOENT => mkdir("profiles", 0777) Err#17 EEXIST => unlink("profiles") = 0 => mkdir("profiles", 0777) = 0 I think it is. Damn it. What seems to hapen here is that git does: - create a subdirectory - puts a file in - deletes a subdirectory (by call unlink - that would normally fail, but with solaris as root it does not fail) => here comes the dangling hard link counter - created the directory again - puts the file in That is why I only see one file in each subdirectory (the one that got checkedout last). So the fix for git should be straight forward. But I still think that Solaris is obviously broken. Because if you ask me it should not be possible to unlink a directory that has files in it?! Thomas - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html