Git Diff and Share ## Generate a diff file between branches: git diff master feature1 > changes.diff You can then share online this diff using this webtool: https://diffy.org/ Generate a zip with all the files in the diff: git diff --name-only master feature1 | xargs tar -zcf changes.tar.gz