I hope you are doing well.
I am faced with a challenge, I have to retrieve the pack-*.pack filename from a git repository freshly cloned from remote:
- Without being able to list the contents of a folder
- There is no .git/objects/info/packs
- There is no .git/objects/http-alternates
- I can access any file, only If I know its name, for example, I can access .git/config or .git/HEAD, but to access pack files I have to know their names, and listing the .git/objects/packs directory is not allowed.
I have access to the .git/index
and any other FILE(not folder, but file), so basically I have to guess the correct filename of any pack-*.pack file available, I read some documentation, but I am not able to find anything.