Skip to content

Instantly share code, notes, and snippets.

@daqing
Created February 23, 2009 07:03
Show Gist options
  • Save daqing/68837 to your computer and use it in GitHub Desktop.
Save daqing/68837 to your computer and use it in GitHub Desktop.
#! /bin/bash
echo -e "\n=> status changed:"
svn st | less -d
svn diff | less -d
echo -ne "\n=> do you want to commit? [y/n]: "
read i
if [ -z "$i" ];then
svn commit -m "debug"
fi
echo -e "\n=> done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment