Home
IDEs Support (IntelliJ Platform) | JetBrains
Submit a request
Community
Sign in
Julia Beliaeva
Total activity
34
Last activity
April 04, 2023 15:28
Member since
February 28, 2017 19:13
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
13
Activity overview
Articles (0)
Posts (0)
Comments (21)
Julia Beliaeva
commented,
April 04, 2023 15:28
Hi, You can use this method to refresh virtual file system after checkout: VfsUtil#markDirtyAndRefresh(boolean async, boolean recursive, boolean reloadChildren, VirtualFile @NotNull ... files) You...
Community
IntelliJ IDEA Open API and Plugin Development
How can I refresh the whole project in Plugin Development?
0 votes
Julia Beliaeva
commented,
April 19, 2022 22:20
Hi, Alison, Yes, you can use `FileHistory.commitsToPathsMap`, but in some cases this map could also have some trivial merge commits which are hidden from the history. You can also look at this answ...
Community
IntelliJ IDEA Open API and Plugin Development
Modifying the commits shown in the file history UI
0 votes
Julia Beliaeva
commented,
April 12, 2022 20:03
Wouldn't the original file history's filter collection contain the same information I need? No, filter collection does not have that information. Filters are just specifications, like parameters ...
Community
IntelliJ IDEA Open API and Plugin Development
Modifying the commits shown in the file history UI
1 vote
Julia Beliaeva
commented,
April 12, 2022 16:00
Hi, Alison Li, Sorry for the late reply. Method `com.intellij.openapi.vcs.history.VcsHistoryProvider#createSessionFor` can't be called on the EDT, and also it does not return you commits in the fil...
Community
IntelliJ IDEA Open API and Plugin Development
Obtaining all revisions in a file history
1 vote
Julia Beliaeva
commented,
April 12, 2022 15:16
Hi, Alison Li, when I try to create a filter with just one commit and do this, it seems like it causes the diff preview to be removed along with the the red and green bars on the left showing file...
Community
IntelliJ IDEA Open API and Plugin Development
Modifying the commits shown in the file history UI
1 vote
Julia Beliaeva
commented,
December 28, 2021 16:47
Hi, Zhewu1228, thank you very much for your feedback. We are definitely going to improve two-dot-filter usability. As for the colours: 1. You can try to select a theme which is more contrast at "Pr...
Community
IntelliJ IDEA Users
Show all commits for one branch when doing code review
0 votes
Julia Beliaeva
commented,
December 24, 2021 18:43
Hi, Zhewu1228. Thank you for your reply. I tried to recreate the situation you are describing to see if I understand correctly what you are talking about. 1. Consider this repository. Developer A i...
Community
IntelliJ IDEA Users
Show all commits for one branch when doing code review
0 votes
Julia Beliaeva
commented,
December 21, 2021 19:09
Zhewu1228, branch filter shows all commits belonging to the branch (meaning, commits which are reachable from the branch head). This behaviour is the same as with the command-line git. However, if ...
Community
IntelliJ IDEA Users
Show all commits for one branch when doing code review
0 votes
Julia Beliaeva
commented,
February 11, 2021 15:56
Official comment
Hi, sworden. For commits touching a specific file you can look at "git4idea.history.GitFileHistory#loadHistory" and "git4idea.history.GitFileHistory#collectHistory", and there is also "git4idea.his...
Community
IntelliJ IDEA Open API and Plugin Development
Git4Idea: GitHistoryUtils.history() with "--follow" parameter leads to VcsException bad revision
0 votes
Julia Beliaeva
commented,
August 25, 2020 18:28
Official comment
Hi, This is not going to be easy, as only a predetermined set of filters is currently supported by default. So you'd have to implement a new kind of log tab with a new kind of filters for this. Thi...
Community
IntelliJ IDEA Open API and Plugin Development
Can I show specific commits in git log without filter?
0 votes