I am looking for a simple solution to make a archive of recent changed file.
I get this simple command from google
git archive -o update.zip HEAD $(g
I use this alias to include new files not in HEAD:
alias gittar='tar -czvf working-files.tgz \ $(git status -s | sed -r "s/..(.*)/\1 /")'