My build is modifying a large file (~256MB) and I want to diff it to the pristine copy. Using a diff tool takes too long and listing the contents is enough for me.
I can do this to list the current contents
unzip -l build.war > current.txt
How can I get the unmodified copy from git (so that I can do the same thing then diff the text files)? Ideally I don't want to reset the current copy (i.e. I want to leave it in its current modified state)