Reputation: 643
I'm working on 2 computers, sometimes I commit changes and switch to other branches and therefore forget these local commits, is there a way in Intellij to allow me to view all unpushed commits, so I can check changes in different branches.
Upvotes: 9
Views: 11234
Reputation: 7528
There is a way to see all unpushed commits of the current branch - just open Push dialog and it will list all commits that are not yet pushed.
However, the only way to find ALL unpushed commits is to check the references in the Log tab, as suggested earlier
Upvotes: 4
Reputation: 272467
You can go to the Version Control pane, select the Log tab, and look for any occurrences where branch abc
is ahead of origin/abc
.
Upvotes: 2