Reputation: 5952
I use git in Netbeans 7.3. I have classes committed to local repository. I want to compare the changes between local and remote repository which is Github.
Upvotes: 2
Views: 986
Reputation: 1326556
As I mention in "Netbeans: How to show all (git) commits than will be pushed?", there is no support for and advanced git log
(or git diff
viewer) in Git for Netbeans.
So the shell remains the backup option, with commands like the ones mentioned in "compare local git branch with remote branch?":
git diff --stat --color master..origin/master
git diff master..origin/master
Upvotes: 2