DarVar
DarVar

Reputation: 18144

NetBeans anyway to see the commits not pushed to remote git repo

In NetBeans I have a number of commits to my local git repo. How can I see the commits not pushed to the remote repo?

Upvotes: 3

Views: 1019

Answers (1)

ShaggyInjun
ShaggyInjun

Reputation: 2973

Netbeans does not have this facility yet. Here is a bug that talks about this. http://netbeans.org/bugzilla/show_bug.cgi?id=208930 http://netbeans.org/bugzilla/show_bug.cgi?id=207165

Take a look at this, http://netbeans.org/kb/docs/ide/git.html#diff

Here is another SF question about this. Git diff between master and origin/master using Netbeans

@EM-Creations

Yep, but svn is different. GIT has the concept of Remote and Head (local repo) and a working tree. When you commit you commit to Head and you have to push to remote repo.

Upvotes: 1

Related Questions