search for: allowbadwhitespace

Displaying 2 results from an estimated 2 matches for "allowbadwhitespace".

2009 Sep 22
1
new git hook to be installed
...--------------------------------------------------------------- +# Allow people to change server-side git config in very specific ways. +# To enable this, on the server, you must do something like the following, +# +# git config hooks.server.config-changing.valid-commands \ +# 'git config hooks.allowbadwhitespace true +# git config hooks.allowbadwhitespace false +# git config hooks.denypush.branch.master master-branch-owner at example.com +# git config --unset hooks.denypush.branch.master' +# +# where the git config variable, hooks.server.config-changing.valid-commands, +# contains the list of commands...
2009 Jun 04
1
FYI, new git "update" script pushed, not yet installed
...lowdeletebranch # This boolean sets whether deleting branches will be allowed in the # repository. By default they won't be. +# hooks.denycreatebranch +# This boolean sets whether remotely creating branches will be denied +# in the repository. By default this is allowed. # # hooks.allowbadwhitespace # This boolean sets whether you may push a commit that adds bad whitespace. @@ -62,7 +68,9 @@ fi # --- Config allowunannotated=$(git config --bool hooks.allowunannotated) allowdeletebranch=$(git config --bool hooks.allowdeletebranch) +denycreatebranch=$(git config --bool hooks.denycreatebranc...