Skip to content
Snippets Groups Projects
  1. Mar 08, 2022
  2. Nov 24, 2019
    • Arkadiusz Drabczyk's avatar
      pre-commit: switch to git-var to check if username and e-mail are set · d033ed35
      Arkadiusz Drabczyk authored
      In git, apart from setting username and e-mail in .gitconfig it's also
      possible to set username in /etc/passwd and set e-mail using EMAIL
      environment variable.  The advantage of this method is that other
      programs such as mutt or doxygen will pick up these settings up so
      there is no need to set them separately in each program.  Current way
      of checking if username and e-mail are set using git config results in
      failure if they are set using this method.
      d033ed35
  3. Oct 23, 2018
  4. Nov 19, 2015
  5. May 26, 2015
  6. Apr 15, 2015
  7. Sep 10, 2014
  8. Jul 07, 2014
  9. Apr 16, 2013
    • Ben Boeckel's avatar
      commit-msg: Remove MERGE_HEAD check from msg_is_merge · 11679f83
      Ben Boeckel authored and Brad King's avatar Brad King committed
      When using "git commit --amend" to edit a merge commit message the
      MERGE_HEAD is long gone.  Also, some Git versions remove this file
      before the commit-msg hook is called.  In either case we should still
      allow long summary lines that start in 'Merge ' just as we do for
      'Revert '.
      11679f83
  10. Apr 04, 2013
  11. Oct 10, 2012
    • Chuck Atkins's avatar
      Make all hook references relative to thier location · 646b891d
      Chuck Atkins authored and Brad King's avatar Brad King committed
      Some hooks were getting referenced directly via $GIT_DIR/hooks while at
      other times getting referenced relative via ${BASH_SOURCE%/*}.  By making
      all references relative then these hooks can reside in a different folder
      and still be daisy-chained by other hooks.
      646b891d
  12. Feb 29, 2012
    • Brad King's avatar
      Set GIT_DIR if not already set · 5ebbe2da
      Brad King authored
      Although it seems reasonable to expect GIT_DIR to be set when
      hooks are invoked, the "git help hooks" documentation does not
      guarantee it.  On msysGit 1.7.8 (and perhaps others) "git gui"
      runs prepare-commit-msg without setting GIT_DIR.  Set GIT_DIR
      at the beginning of each commit hook if it is not already set.
      5ebbe2da
  13. Feb 06, 2012
  14. Oct 24, 2011
    • Brad King's avatar
      Merge branch 'itk-hook-cleanup' into hooks · ad08c209
      Brad King authored
      ad08c209
    • Matt McCormick's avatar
      Remove pre-commit-style. · 4b2beb61
      Matt McCormick authored and Brad King's avatar Brad King committed
      These pre-commit hooks where added to the ITK specific hook chain since all
      projects do not use them.
      
      Change-Id: Ifcb41645374914c4f30f7c5f2feb2e5d40a4b3e3
      4b2beb61
    • Matt McCormick's avatar
      Remove .txx pre-commit check. · 389c1171
      Matt McCormick authored and Brad King's avatar Brad King committed
      This is an ITK specific check.  It is already implemented in
      the ITK Utilities/Hooks/pre-commit script executed in the hook chain.
      
      This should allow commiting when on the ITK release branch where .txx
      files still currently exist.
      
      Change-Id: I1115a2129beb89d6657d599aa6e72bb6515dfca3
      389c1171
  15. Oct 06, 2011
    • Brad King's avatar
      hooks-chain: Look for chains in project hooks config · 3bde0fa9
      Brad King authored
      If a local hook chain rule is not in the local git configuration
      check for a value defined in .hooks-config.bash:
      
        hooks_chain_pre_commit
        hooks_chain_commit_msg
        hooks_chain_prepare_commit_msg
      
      This allows project to configure chained hooks without adding any
      values to the local git configuration.  Since the project hooks
      config can be versioned with the hook scripts it references this
      ensures a consistent state.
      3bde0fa9
    • Brad King's avatar
      Load local hooks configuration from work tree · 18358af3
      Brad King authored
      Look for a ".hooks-config.bash" file at the top of the work tree.
      Load it in each hook to get per-project configuration.  Currently
      we do not define any config options, but this adds the framework.
      18358af3
    • Brad King's avatar
      pre-commit: Remove KWStyle and uncrustify support · e8180f20
      Brad King authored
      These checks can be added in projects that want them using the
      pre-commit hook chaining.
      e8180f20
  16. Jul 19, 2011
    • Matt McCormick's avatar
      ENH: pre-commit: Prevent add .txx files. · f059ba93
      Matt McCormick authored
      A transition occurred in the toolkit to move all .txx files to .hxx files.
      This prevents accidental additions of or renames to .txx files.
      
      Change-Id: Id4ace9cfca2c56506d93396366d146173e015003
      f059ba93
  17. Jun 14, 2011
  18. Jan 26, 2011
  19. Jan 13, 2011
  20. Jan 11, 2011
  21. Dec 30, 2010
  22. Nov 17, 2010
  23. Nov 16, 2010
    • Brad King's avatar
      Chain to script configured by "hooks.chain-<hook>" · dc31be5b
      Brad King authored
      Chain the pre-commit, commit-msg, and prepare-commit-msg hooks to
      locally configured scripts.  Interpret relative paths with respect to
      the working directory where the hooks run (top of work tree).  This
      allows project setup scripts to add project-specific checks for each of
      these hooks.
      dc31be5b
  24. Nov 05, 2010
  25. Nov 03, 2010
    • Gaëtan Lehmann's avatar
      make the check for KWStyle executable non blocking · b32ecce7
      Gaëtan Lehmann authored and thewtex's avatar thewtex committed
      At this time, a contributor won't be able to commit a change if KWStyle
      is not installed on the computer. KWStyle is not a very common program,
      and so is likely to have to be installed by hand. This increase the work
      needed to be able to contribute to ITK.
      With this change a warning is displayed if KWStyle is not installed
      but the commit is not blocked.
      
      Change-Id: I0719ee5ac6e048120504bbdc4dc022043c0f0ded
      b32ecce7
  26. Sep 27, 2010
    • Brad King's avatar
      Merge branch 'style-checks' into hooks · c4607863
      Brad King authored
      c4607863
    • thewtex's avatar
      pre-commit: Apply uncrustify and KWStyle check for modified files. · d5bb0764
      thewtex authored
      uncrustify (uncrustify.sourceforge.net) is applied to changed files prior to
      commit.
      
      This feature is off by default.  To enable this behavior, set
      
        git config hooks.uncrustify true
      
      By default, the behavior of git-mergetool is used to review the changes
      uncrustify makes before they are added to the commit.  For more information on
      this behavior, see
      
        git help mergetool
      
      KWStyle is run on the changed C++ files and the commit is aborted if the files
      do not pass the test.  A file similar to the original is saved with a '*.kws'
      extension so that line numbers referenced in the error message can be examined.
      
      The test is off by default.  To enable this behavoir, set
      
        git config hooks.KWStyle true
      
      Project specific uncrustify and KWStyle configuration files are set with 'git
      config'.  For example,
      
        git config hooks.uncrustify.conf path/to/uncrustify.conf
        git config hooks.KWStyle.conf path/to/KWStyle.conf
        git config hooks.KWStyle.overwriteRulesConf path/to/overwrite.conf # optional
      
      If the appropriate values have not been set, die() is called.  An
      optional KWStyle overwrite rules file can also been configured.
      
      The files on which to run the style checks must also be identified in the
      repository's '.gitattributes'.  For example,
      
        *.h    hooks.style
        *.cpp  hooks.style
      
      Or, to only enable a subset of style hooks,
      
        *.h    hooks.style=KWStyle
        *.cpp  hooks.style=KWStyle,uncrustify
      
      Change-Id: Ia6b2d4136af3002eb0ec5d36f03c50df928917f4
      d5bb0764
  27. Sep 15, 2010
    • Brad King's avatar
      pre-commit: Allow submodule check to be disabled · 19f86ec1
      Brad King authored
      If hooks.submodule is 'false' disable all checks.  If an individual
      hooks.<module>.update is 'true' then accept any update for that module.
      Leave these options out of the hints printed.  Developers that know what
      they are doing will be able to find them by reading the hook source.
      19f86ec1
  28. Sep 14, 2010
  29. Aug 31, 2010
Loading