Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As also stated in #195 I noticed that the plugin had some performance issues, especially in larger multi-repository projects where all repositories make use of gitflow.
I made a number of improvements (at least I think they're improvements, but you'll have to agree of course):
GitflowBranchUtil
on every git-change anyway, these don't change anyway, so caching them locally saves some timeGitflowConfigUtil
when figuring out if gitflow is even used in the project. This turned out to save a lot of time, as parsing the config-file apparently takes relatively longWhen you get to merging this I'll probably have to look into #214 again as well, since the menu-options also make use of the
RepoActions
-class and determining whether or not to show the "Advanced"-options should probably be handled differently. Or the other way around of course, depending on which you want to merge first.Let me know what you think! :-)