Is there a way to see what would be pushed if I did a git push command?
git push
What I\'m picturing is something like the \"Files Changed\" tab of Github\'s \"p
Try git diff origin/master..master (assuming that origin/master is your upstream). Unlike git push --dry-run, this still works even if you don't have write permission to the upstream.
git diff origin/master..master
origin/master
git push --dry-run