How can I see what I am about to push with git? - Stack Overflow
There is always dry-run:
git push --dry-run
It will do everything except for the actually sending of the data.
If you want a more graphical view you have a bunch of options.
Tig and the gitk script that come with git both display the current branch of your local copy and the branch of the remote or origin.
Read full article from How can I see what I am about to push with git? - Stack Overflow
No comments:
Post a Comment