We recently migrated from SVN to Git, and I'm trying to convert our deployment scripts to pull from the new repo.
One script creates a "hotfix", which just includes files that have changed between two selected tags using SVN diff. However, git diff will only work inside a cloned repository (unlike git archive). We don't have the need or disk space for a working copy of the repository on the deployment machine.
Is there any way to get git diff to work without the local repo, or to simulate its output?