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
You can list the commits by:
git cherry -v
And then compare with the following command where the number of ^ equals to the number of commits (in the example its 2 commits):
git diff HEAD^^