I did a git-unpack-objects on a .pack file. What I got was a lot of subdirectories from 00 to ff , each containing a lot of tiles with names as SHA1 hashes , but trying to display their contents gets me some junk. Now I need to get the actual source files from those hash files?
Share
If you place the .pack files inside the
.git/objects/pack/directory of a newlygit init‘d repository, you should be able togit checkout -b somebranch ANYSHA1.For example: