You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git-flow is a nice add-on to git, which uses sub-groups or chains of groups, for example, you can do something like git flow feature start newFeatureName or git flow release finish theReleaseName
I think having these sub groups or chains of groups together makes for a natural CLI, but does not seem to be possible as Cli assumes there is only top level groups -- Cli.withGroup produces a GroupBuilder which itself does not allow another group.
The text was updated successfully, but these errors were encountered:
Maybe. Depends on how ugly the CLI and APIs get :) For example, where are the -- options placed in a flow like above? Also, how would the annotations work?
On the other hand, I don't think I have any projects using even the two level git style, so I'm not very tied to the existing grouped system.
git-flow is a nice add-on to git, which uses sub-groups or chains of groups, for example, you can do something like
git flow feature start newFeatureName
orgit flow release finish theReleaseName
I think having these sub groups or chains of groups together makes for a natural CLI, but does not seem to be possible as
Cli
assumes there is only top level groups --Cli.withGroup
produces aGroupBuilder
which itself does not allow another group.The text was updated successfully, but these errors were encountered: