Open files based on git status?
已回答
I’m evaluating JetBrains as a replacement for my current editor, and one thing I miss is quickly navigating to files based on git status.
The two I’m looking for are:
- Files modified and not committed.
- Files modified in the current branch compared to main.
I’m hoping to trigger these file lists similar to listing recent files, with the fuzzy finder. More specifically, I’m hoping to trigger via ideavim keybinds.
One thing I tried to search for was piping a list of files from the CLI into the file fuzzy finder, but I don’t seem to get many useful results.
Thanks in advance!
-Jack
请先登录再写评论。
Hi Jack,
Files that are modified and not commited will be marked as blue in the IDE. Please see:
https://www.jetbrains.com/help/idea/viewing-changes-information.html
To compare files the difference with current working tree vs any branch (including main)

1) Have current branch checked out
2) Go to git log and click
Dino,
Thank you for that info. However, this doesn’t help much for my workflow. I try to stay keyboard only. That’s why I was trying to somehow get the file lists with fuzzy finders.