git archive --remote=<your-URL> | tar -t
source: https://stackoverflow.com/questions/3946538
You can get the most recent tree for a repository (no history, just the current state of the repo) with `git clone --depth=1`. That's often good enough for slow connections.
git archive --remote=<your-URL> | tar -t
source: https://stackoverflow.com/questions/3946538