Doug Culnane wrote on Thu, Jan 27, 2011 at 13:26:55 +0100: > So the technical spec is if the command is ignore append the file or > folder to its containing parent folders svn:ignore list.
% head .zshrc svn() { if [ "$1" = "ignore" ]; then =svn propedit svn:ignore --editor-cmd "sh -c 'echo \"$2\" >> \$1'" "`dirname $2`" else =svn "$@" fi } %