diff options
-rwxr-xr-x | capcom | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#!/bin/sh + +# Capitalize given commit messages + +[ $# -eq 0 ] && { echo "usage: $0 rev-list" 1>&2; exit 1; } + +FILTER_BRANCH_SQUELCH_WARNING=1 \ +git filter-branch --msg-filter 'awk -vFS= -vOFS= "NR==1{\$1=toupper(\$1); print \$0} NR>1{print}"' "$@" |