danw: Let's see how many more consecutive times I can get this wrong

Let's see how many more consecutive times I can get this wrong
Friday, 4 April 2008, 1:36 pm
	> svn rm -f foo
	svn: invalid option character: f
	Type 'svn help' for usage.
	> svn rm --force foo
	D         foo
	>
...time passes...
	> git rm --force foo
	error: unknown option `force'
	> git rm -f foo
	rm 'foo'
	>