You cannot share configuration directly
The contents of the folder .git(intended) for a specific installation.
Alternative
, , script , . bin/setup :
#!/usr/bin/env bash
git flow init -d
git config gitflow.prefix.versiontag ""
git config gitflow.prefix.feature ""
:
-> chmod +x bin/setup
-> git add bin/setup
-> git commit -m "adding a setup script to ensure consistent config"
:
-> git clone ....
-> cd project
-> bin/setup
-> git config -l --local
...
gitflow.branch.master=master
gitflow.branch.develop=development
gitflow.prefix.versiontag=
gitflow.prefix.feature=
gitflow.prefix.release=release/
gitflow.prefix.hotfix=hotfix/
gitflow.prefix.support=support/