Skip to content

Commit 7e13596

Browse files
committed
feat(git-cim): add new command to commit with 80-character wrapped message
1 parent efc72e8 commit 7e13596

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

git-cim

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
subject="$1"
2+
body="$2"
3+
shift 2
4+
5+
git commit -m "$subject" -m "$(echo "$body" | fmt -w 80)" "$@"

0 commit comments

Comments
 (0)