You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
334 B

  1. #!/bin/bash
  2. total_commits=$(git shortlog -s -n | awk '{ sum += $1; } END { print sum; }' "$@")
  3. if [[ $total_commits -gt 200 ]]; then
  4. echo "Total commits: $total_commits. Minimum required commits reached!"
  5. else
  6. echo "Total commits: $total_commits. $(expr 200 - $total_commits) commits left to reach minimum required commits"
  7. fi