Git hooks to fire when using merge with --no-ff -
assume have 2 branches:
- feature
- master
if merge feature master , force commit merge --no-ff so:
git merge feature --no-ff
will of client side commit hooks (e.g. commit-msg, pre-commit) fired? assume since --no-ff, introducing commit.
yet don't seem fire me. gives? can point me documentation?
Comments
Post a Comment