【问题标题】:How do I limit a git pre-commit hook to only act on files with certain extensions?如何限制 git pre-commit 挂钩仅对具有某些扩展名的文件起作用?
【发布时间】:2019-11-25 22:52:04
【问题描述】:

我在 ~/.git-templates/hooks/pre-commit 有以下 Git 预提交钩子。它旨在从文件中的每一行末尾删除不必要的空白...

# A git hook script to find and fix trailing whitespace in your commits. Bypass
# it with the --no-verify option to git-commit.

# detect platform
platform="win"
uname_result=`uname`
if [[ "$uname_result" == "Linux" ]]; then
  platform="linux"
elif [[ "$uname_result" == "Darwin" ]]; then
  platform="mac"
fi

# change IFS to ignore filename's space in |for|
IFS="
"

# remove trailing whitespace in modified lines
for line in `git diff --check --cached | sed '/^[+-]/d'` ; do
  # get file name
  if [[ "$platform" == "mac" ]]; then
    file="`echo $line | sed -E 's/:[0-9]+: .*//'`"
    line_number="`echo $line | sed -E 's/.*:([0-9]+).*/\1/'`"
  else
    file="`echo $line | sed -r 's/:[0-9]+: .*//'`"
    line_number="`echo $line | sed -r 's/.*:([0-9]+).*/\1/'`"
  fi

  # since $file in working directory isn't always equal to $file in index,
  # we backup it; thereby we can add our whitespace fixes without accidently
  # adding unstaged changes
  backup_file="${file}.working_directory_backup"
  cat "$file" > "$backup_file"
  git checkout -- "$file" # discard unstaged changes in working directory

  # remove trailing whitespace in $file (modified lines only)
  if [[ "$platform" == "win" ]]; then
    # in windows, `sed -i` adds ready-only attribute to $file (I don't kown why), so we use temp file instead
    sed "${line_number}s/[[:space:]]*$//" "$file" > "${file}.bak"
    mv -f "${file}.bak" "$file"
  elif [[ "$platform" == "mac" ]]; then
    sed -i "" "${line_number}s/[[:space:]]*$//" "$file"
  else
    sed -i "${line_number}s/[[:space:]]*$//" "$file"
  fi
  git add "$file" # to index, so our whitespace changes will be committed

  # restore unstaged changes in $file from its working directory backup, fixing
  # whitespace that we fixed above
  sed "${line_number}s/[[:space:]]*$//" "$backup_file" > "$file"
  rm "$backup_file"

  [[ "$platform" == "mac" ]] || e_option="-e" # mac does not understand -e
  echo $e_option "Removed trailing whitespace in \033[31m$file\033[0m:$line_number"
done

echo

# credits:
# https://github.com/philz/snippets/blob/master/pre-commit-remove-trailing-whitespace.sh
# https://github.com/imoldman/config/blob/master/pre-commit.git.sh

# If there still are whitespace errors, print the offending file names and fail.
exec git diff-index --check --cached $against --

# Now we can commit
exit

问题是,我只希望将预提交挂钩应用于某些扩展名的文件。我需要做些什么才能将操作限制为我选择的扩展程序?

【问题讨论】:

    标签: git file-type pre-commit-hook


    【解决方案1】:

    pre-commit hook 不带参数。

    但是,与this gist 一样,您可以使用git diff-index 列出即将提交的文件。

    具体来说,使用--diff-filter option

    git diff-index --name-only --cached --diff-filter = ACMRTX 
    

    例子:

    # Show files about to be commited that do not match filters in .jshintignore and are js files 
    for FILE in ` git diff-index --name-only --cached --diff-filter = ACMRTX $ {against} - |  grep -v -f .jshintignore |  grep \.  js $ -i ` ;  do 
      jshint $ {FILE} >> / dev / null 
      EXIT_CODE = ` expr $ {EXIT_CODE} + $?  ` 
    done 
    
    if [[ $ {EXIT_CODE} -ne 0]] ;  then 
      echo " " 
      echo " ----------------------------------------------- " 
      echo " | * * * EPICFAIL * * * | " 
      ...
    fi
    
    exit $ (( $ {EXIT_CODE} )) 
    

    【讨论】:

    • 那么在上面的示例中,您在提交之前应用更改的文件是以扩展名“.jshintignore”和“.js”结尾的文件吗?
    • @Dave 在这个例子中,是的。
    猜你喜欢
    • 1970-01-01
    • 2020-06-24
    • 2012-03-15
    • 1970-01-01
    • 1970-01-01
    • 2021-03-19
    • 1970-01-01
    • 2011-06-08
    • 1970-01-01
    相关资源
    最近更新 更多