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
After git commit -m "{your commit message}", you will get a commit hash before the push. So you can see what you are about to push with git by running the following command:
git commit -m "{your commit message}"
git
git diff origin/{your_branch_name} commit hash
e.g: git diff origin/master c0e06d2
git diff origin/master c0e06d2