Preview a Git push
Remember origin/master is a ref that points to the head of the master branch on the remote named origin at the last pull, so you could use a command such as $ git log origin/master..master You could use git-preview-push below that comments on the output of git push –dry-run –porcelain: #! /usr/bin/env perl use warnings; … Read more