I created a shared repo by:
git init --bare my_project.git
At some point, another user updated this repo with his changes (using git push
).
How could I check which files are exist now in the shared repo and what is their content ?
In a local repo, I could do just ls
and cat <some file>
, but in the shared repo there is no working directory...