我在Netbeans 7.3中使用git。我有提交到本地存储库的类。我想比较本地和远程存储库之间的变化,即Github。
答案 0 :(得分:2)
正如我在“Netbeans: How to show all (git) commits than will be pushed?”中提到的那样,我们不支持和提升git log
(或git diff
观众)in Git for Netbeans。
所以shell仍然是备份选项,其命令类似于“compare local git branch with remote branch?”中提到的命令:
git diff --stat --color master..origin/master
git diff master..origin/master