Accessing files of a repository from the Git server
I have to access some files stored in a Git repository, but I don't see where they are stored inside the repository folder. Is there a special way to access the various files pushed from the clients? If this is a bare repo, you wouldn't find those file in the repo.git folder. See " all about "bare" repos ": a bare repo has no working tree, and is used for pushing to it (since there is no working tree to keep in sync with an updated branch) The easiest way to see those file is to clone said bare repo: git clone /path/to/repo.git /path/to/repo I know only a hack-ish way to see the list of files