Skip to content

Instantly share code, notes, and snippets.

@p4ul
Created January 22, 2013 23:20
Show Gist options
  • Save p4ul/4599754 to your computer and use it in GitHub Desktop.
Save p4ul/4599754 to your computer and use it in GitHub Desktop.
check svn for updates and get formatted text for redmine broadcast
echo -e "Files to change:\n" \
&& svn st -u | grep -v ? \
&& echo -e "\nChange Log:\n" \
&& svn log -r BASE:HEAD | grep -v -e '^\-\|^$\|^r[0-9].'| sort -u | awk '{print "* " $0}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment