如何在Netbeans中比较GIT Remote Repo和local

时间:2013-08-05 06:47:40

标签: git netbeans version-control github

我在Netbeans 7.3中使用git。我有提交到本地存储库的类。我想比较本地和远程存储库之间的变化,即Github。

1 个答案:

答案 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