Skip to content

Instantly share code, notes, and snippets.

@olmstadfm
Created December 3, 2015 12:03
Show Gist options
  • Save olmstadfm/8c35fb1c1a26fd738c3b to your computer and use it in GitHub Desktop.
Save olmstadfm/8c35fb1c1a26fd738c3b to your computer and use it in GitHub Desktop.
Включить номер задачи в текст комментария для коммита
#!/bin/sh
issue_id=$(git rev-parse --abbrev-ref HEAD | grep --only-matching -P '^\d+')
if [ -n "$issue_id" ]; then
echo "Связано c #$issue_id" >> $1
fi
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment