Git pre-commit钩子修复尾部空白

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git pre-commit钩子修复尾部空白相关的知识,希望对你有一定的参考价值。

  1. #!/bin/sh
  2. #
  3. # A git hook script to find and fix trailing whitespace
  4. # in your commits. Bypass it with the --no-verify option
  5. # to git-commit
  6. #
  7.  
  8. if git-rev-parse --verify HEAD >/dev/null 2>&1 ; then
  9. against=HEAD
  10. else
  11. # Initial commit: diff against an empty tree object
  12. against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
  13. fi
  14. # Find files with trailing whitespace
  15. for FILE in `exec git diff-index --check --cached $against -- | sed '/^[+-]/d' | sed -r 's/:[0-9]+:.*//' | uniq` ; do
  16. # Fix them!
  17. sed -i 's/[[:space:]]*$//' "$FILE"
  18. done
  19.  
  20. # Now we can commit
  21. exit

以上是关于Git pre-commit钩子修复尾部空白的主要内容,如果未能解决你的问题,请参考以下文章

Vue+ESLint+Git钩子函数pre-commit配置教程

Git 预推钩子

在 Git 钩子中获取提交消息

指定在 git commit --no-verify 上跳过哪个钩子

如何删除远程 git 钩子?

webstorm上传git报错忽略