主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Kirill Likhodedov
活动总数
733
最后的活动
2021年10月14日 12:17
成员加入日期
2010年06月11日 07:06
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
269
活动概览
文章(0)
帖子(0)
评论(464)
Kirill Likhodedov
进行了评论,
2021年10月14日 12:16
Hi Colin. We're currently in the process of rewriting the Trusted Projects mechanics and API. We're going to make it easier for clients/subsystems/plugins in 2021.3. Instead of postponing the "do y...
社区
IntelliJ IDEA Open API and Plugin Development
Implementing Trusted Project functionality
0 票
Kirill Likhodedov
进行了评论,
2019年08月08日 08:52
正式评论
If a merge conflict happens during `git stash pop`, then the stash is not deleted. Git behaves this way, and it is reasonable, because otherwise user would loose the original data if they decide to...
社区
IntelliJ IDEA Users
Why is stash not popped after successful project update?
0 票
Kirill Likhodedov
进行了评论,
2019年07月10日 13:24
> I want to find a commit the working copy of the project is currently referring to. Initially HEAD is in a known position, but later I will need to find a detached HEAD as well In Git the HEAD is ...
社区
IntelliJ IDEA Open API and Plugin Development
Find a commit which has the HEAD
0 票
Kirill Likhodedov
进行了评论,
2019年04月26日 10:44
Hi Julien, yes, it is doable. 1. No need to do this in a loop. You can subscribe to the `GitRepository.GIT_REPO_CHANGE` MessageBus Topic, and the listener will be pinged on each change in Git repo...
社区
IntelliJ IDEA Open API and Plugin Development
How-to create custom plugin to automatically change deployment target based on current git branch?
1 票
Kirill Likhodedov
进行了评论,
2019年04月12日 18:23
There is `CheckinHandler#checkinSuccessful()` method, it is called after commit is executed successfully. Please try if works for you.
社区
IntelliJ IDEA Open API and Plugin Development
Running logic after CloseTaskDialog's "commit"
0 票
Kirill Likhodedov
进行了评论,
2018年12月14日 07:54
正式评论
GitRepository objects are created and managed by the GitRepositoryManager. Unfortunately, it happens somewhat separately from the VCS roots which are managed by the ProjectLevelVcsManager. Fortunat...
社区
IntelliJ IDEA Open API and Plugin Development
How to listens to project opened?
0 票
Kirill Likhodedov
进行了评论,
2018年12月11日 11:58
Yes, I'm afraid it is so for the moment. You may look and copy paste the code from intellij-community, of course.
社区
IntelliJ IDEA Open API and Plugin Development
First steps for writing tests for a Git plugin
0 票
Kirill Likhodedov
进行了评论,
2018年12月11日 11:10
Ah, I've found out that unfortunately, there is no way to use GitPlatformTest at the moment :( We don't distribute our test framework classes, so a plugin can't depend on them. Please follow https:...
社区
IntelliJ IDEA Open API and Plugin Development
First steps for writing tests for a Git plugin
0 票
Kirill Likhodedov
进行了评论,
2018年12月09日 16:22
正式评论
The best would be to extend the GitPlatformTest class (or, for example, a little bit more specific GitSingleRepoTest). Almost all git4idea tests are its inheritors, take a look at their source code...
社区
IntelliJ IDEA Open API and Plugin Development
First steps for writing tests for a Git plugin
0 票
Kirill Likhodedov
进行了评论,
2018年10月11日 09:11
Are you sure it is the hook which is executed twice? Can it be possible that one of these `mvn clean install` commands are issued from IDEA Maven Integration? If you're not sure, to diagnose this y...
社区
IntelliJ IDEA Users
Git pre-push hook executed twice
0 票