2

I have been having intermittent issues with git. I am using it to version all of my files that are not volatile.

The error: fatal: confused by unstable object source data for

Now, I originally had this problem on another drive and when I did, I saw an error in dmesg indicating that EXT-4 was unable to read some meta-data. That led me to believe the drive was failing. So, I unmounted the drive and ran the fsck tools and everything checked out okay. Do I need to do anything more in depth since git is complaining?

Secondly, I just got this error on a newer drive and did NOT get any errors in dmesg indicating any problems reading meta-data in the file system. I am certain that no other processes are writing to it as I used lsof.

Any ideas on how to proceed? I am storing large, binary files in one case (several GB) and a mix of files in the other.

Similar post: git says "fatal: confused by unstable object source data"

Walter

Community
  • 1
  • 1
Walter
  • 1,290
  • 2
  • 21
  • 46

2 Answers2

2

Either you are trying to add always-changing volatile file or something low-level is failing.

git says "fatal: confused by unstable object source data"

Community
  • 1
  • 1
Vi.
  • 37,014
  • 18
  • 93
  • 148
0

Maybe something to do with Copy-On-Write feature in ext4 ?

See https://stackoverflow.com/a/42299634/7491491

Raphaël G.
  • 19
  • 1
  • 5