Artificial intelligent assistant

svn command to see a tally of my changes Is there an SVN command that I can run to see a tally of all of my contributions? Something like: added 1800 deleted 15

I don't know about a single SVN command, but this seems to work:


svn log ${SVNURL} | awk '$1~/^r/ && $3=="username"{print $1}' | tr -d r |
while read rev; do svn diff -c $rev ${SVNURL}; done |
awk '/^\+\+\+/ || /^---/ {} /^\+/ {a++} /^-/ {d++} END {print a, "additions"; print d, "deletions"}'


Use your username instead of "username".

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy 2eb2e440e0a765a53f4b938be9c29958