Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Kirill Likhodedov
Total activity
733
Last activity
October 14, 2021 12:17
Member since
June 11, 2010 07:06
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
269
Activity overview
Articles (0)
Posts (0)
Comments (464)
Sort by recent activity
Recent activity
Votes
Created
August 29, 2015 12:19
That's obviously because you're running Git from the EDT thread, thus freezing the whole UI until the operation completes. Which can take forever if Git waits for a password, and the password promp...
Community
IntelliJ IDEA Open API and Plugin Development
Get project' git repositories in a project component
0 votes
Created
December 15, 2015 13:55
So, are you going to write a standalone application, or a plugin for IDEA?If you're going to write a plugin, the first way is preferrable. That way you'll be in sync with current git4idea implement...
Community
IntelliJ IDEA Open API and Plugin Development
Using Git4Idea as a library ?
0 votes
Created
April 01, 2013 14:04
Hi Kevin,You may use ProjectLevelVcsManager.getInstance(Project).getVcsFor(VirtualFile). That would return the instance of the AbstractVcs which controlls the file, or null if it is not under versi...
Community
IntelliJ IDEA Open API and Plugin Development
Git info for current file in plugin
0 votes
Created
April 01, 2013 20:22
There is no common API for all VCSs for this task, but for Git you can use git4idea.history.GitHistoryUtils#getLastRevision(Project, FilePath).
Community
IntelliJ IDEA Open API and Plugin Development
Git info for current file in plugin
0 votes
Created
March 24, 2013 13:49
I don't reproduce the problem: I've downloaded the example plugin, made a jar from it, put it into the plugins directory of my Idea 12.0.4, and started Idea with TFS integration and CustomCheckinPo...
Community
IntelliJ IDEA Open API and Plugin Development
Expected PolicyBase with TFS policy plugin
0 votes
Created
March 13, 2013 14:05
Well, it depends on the nature of the features you make, but I see two ways for you to go:1. Implement a separate plugin, providing this sort of integration. And by separate plugin I mean that it s...
Community
IntelliJ IDEA Open API and Plugin Development
Extending the VCS commit dialog
0 votes
Created
April 16, 2013 15:44
Please try to define a CheckinHandler with getBeforeCheckinConfigurationPanel or getAfterCheckinConfigurationPanel.You may also override CheckinEnvironment#createAdditionalOptionsPanel, but it woul...
Community
IntelliJ IDEA Open API and Plugin Development
Extending the VCS commit dialog
0 votes
Created
April 25, 2013 10:53
This class was removed.Could you please share your use case: what were you using it for?Maybe com.intellij.openapi.vcs.annotate.FileAnnotation#setCloser can meet your needs?
Community
IntelliJ IDEA Open API and Plugin Development
com.intellij.openapi.vcs.annotate.AnnotationListener;
0 votes
Created
May 28, 2013 10:41
Hi Charles,git4idea-rt is a module which contains classes which are executed not within the main instance of IntelliJ IDEA, but from the separate Java program, which is called by Git when the user ...
Community
IntelliJ IDEA Open API and Plugin Development
Updating the runtime git4idea-rt classpath
0 votes
Created
April 24, 2013 11:40
Why do you think that ChangeBrowserSettings is a project component?Use com.intellij.openapi.vcs.CommittedChangesProvider#createDefaultSettings.Search for usages in IntelliJ community codebase for d...
Community
IntelliJ IDEA Open API and Plugin Development
Obtain last Commit
0 votes
«
First
‹
Previous
Next
›
Last
»