The current NetBeans Git push plugin dialog does not support any preview options.
What is missing is the simple log function, as shown in the Git push preview section:
git log origin/master..master
But depending on your push policy and remote refspec, this may be more complex (you can push multiple branches instead of one).
You need to (like this script ) interpret the result:
git push --dry-run --porcelain
The NetBeans Git plugin does not implement this, leaving you with only a workaround for the command line .
source share