【发布时间】:2020-03-13 17:28:34
【问题描述】:
我在我的项目中使用gitflow。
我决定暂时不压缩功能提交,因为它是一个实验性项目,我希望对修改进行精细控制。因此,我有许多名为feature/<some_feature_name> 的分支。
IDEA 的“Branches...”视图的默认行为是将它们展平,显示一个长长的列表,如下所示:
├─ master/
├─ develop/
├─ feature/f1
├─ feature/f2
├─ feature/f3
├─ [...]
├─ hotfix/h1
├─ hotfix/h2
└─ [...]
许多 git GUI 以图形方式将它们分组到“文件夹”中,例如:
├─ master/
├─ develop/
├─ feature/
│ ├─ f1
│ ├─ f2
│ ├─ f3
│ └─ [...]
└─ hotfix/
├─ h1
├─ h2
└─ [...]
是否有任何插件/设置来实现这一点?
【问题讨论】:
标签: git intellij-idea git-branch git-flow intellij-plugin