-
Notifications
You must be signed in to change notification settings - Fork 49
Description
Thank a lot for this, been looking for a more efficient way to deal with versioning for quite a while now!
I realize this is not very active, but I was wondering if there's a way to implement two small modifications:
1. Prevent Interactivity
While making a release or a feature it stills asks me for a commit message.
I've seen a question in SO that said I could make something like:
export GIT_MERGE_AUTOEDIT=no
git flow release finish -m 'Merge Message' release_branch_name
unset GIT_MERGE_AUTOEDIT
But I don't understand how to apply something like this inside the hooks, without the message and without the release name (using auto bump). Any ideas?
2. Automatically push commits on the master
After I finish a release, I'm taken to the master branch (using VSCode), and I can see that there are 2/3 commits to be pushed to origin. I was wondering if there would be way to automatically push after finishing a release/feature/hotfix.
Thanks a lot!