Skip to content

Instantly share code, notes, and snippets.

@alexrqs
Created July 19, 2016 23:34
Show Gist options
  • Save alexrqs/af0608ab6c747159279fcecbd868d602 to your computer and use it in GitHub Desktop.
Save alexrqs/af0608ab6c747159279fcecbd868d602 to your computer and use it in GitHub Desktop.
git command to prefix some words to multiple commits on the same branch.

This command will prefix xx commits number with [SYTO-640] including sqare brakets, the importance of the \c at the end of the prefix is to avoid new lines on the commit otherwise this will transform the the commit name to commit description.

more info about \c http://stackoverflow.com/questions/7154800/what-is-the-bash-escape-character-c

git filter-branch -f --msg-filter '
  echo "[SYTO-640] \c" && cat 
' HEAD~xx..HEAD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment