View all changes in a topic branch "at a glance"?
I'm working on a large number of projects in my spare time. When I'm returning to work on a certain project/feature after a long delay, my typical first need is to see what I've been doing last time, to re-familiarize myself with the context.
As such, I commonly find myself switching to the terminal to run a git log -p upstream/master..HEAD
and then going through the patches one by one, opening the relevant files in the IDE to see the context.
This gets tedious real fast. Is there anything in JetBrains IDEs to quickly get a list of all changes in a topic branch (or between any two given revisions) and navigate through them? What I want is basically an equivalent of Find Window, but where each entry is a change between two given revisions.
Please sign in to leave a comment.
Hi,
You can try to right-click on remote/main and choose Show diff with Working tree to compare with your current work tree or compare with main.
Compare with main will show commits that exist in origin/main but not in local main.