-
Notifications
You must be signed in to change notification settings - Fork 6
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 configuration support through git-config #46
Comments
Do the existing git-flow tools have some configuration? |
Configuration proposal (file # Enable this configuration:
# git config --local include.path ../.gitconfig
[flow]
defaultparams="--verbose"
changelogheader=""
prurl="??"
[flow "files"]
changelog="CHANGELOG.md"
version="VERSION"
[flow "branches"]
develop="dev"
stable="master"
origin="origin"
upstream="origin"
[flow "prefixes"]
feature="feature-"
hotfix="hotfix-"
version="v"
[flow "hooks"]
hook1="myfunction"
|
Actually, gitflow has a configuration system and they use git-config: https://github.com/petervanderdoes/gitflow-avh/wiki/Reference:-Configuration Is it of any use to us? |
Okay, so the gitflow has this:
Which is quite similar to the |
It is good idea. So we will primarily support Hooks will follow git standard and will not be placed in configuration file #52 |
The following features can be configurable:
master
ordevelop
instead ofdev
;stable
instead ofmaster
)feature/
instead offeature-
--request
This allows a common shared configuration to be commited into .gitconfig in the project and also set user's default preferences in ~/.gitconfig
The text was updated successfully, but these errors were encountered: