-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add start-point option to git feature
#861
Comments
You can use |
Awesome! Thanks.
|
I think it would be better to use |
…n-creeate-branch feat(#861): add optional parameter --from to set the start point
Currently,
git feature
creates a new branch based on the current active one.As
git flow
specifies that feature branches should be based ondevelop
, it would be nice to be able to specify astart-point
, so we don't need to switch branches first.After finishing a feature, I currently need to run 3 commands to create my new feature branch:
It would be awesome if we could simplify those 3 lines to a single command:
# git feature <branchname> [<start-point>] git feature my-feat develop
Regardless of my active branch,
git feature my-feat develop
would:origin
develop
asstart-point
,Does
git-extras
have global options? It would be awesome to be able to set the defaultstart-point
trough a global optionThe text was updated successfully, but these errors were encountered: