Browsing articles tagged with " Subversion"
Aug
28

A day with SVN CLI

By Tom Schultz  //  Blog Post  //  No Comments

Problem:

Have you ever seen this?

$ svn commit
svn: Commit failed (details follow):
svn: Could not use external editor to fetch
log message; consider setting the
$SVN_EDITOR environment variable or using
the --message (-m) or --file (-F) options
svn: None of the environment variables
SVN_EDITOR, VISUAL or EDITOR is set,
and no 'editor-cmd' run-time configuration
option was found

Answer:
$ export SVN_EDITOR="/usr/bin/nano"

Problem:

I need to know what the changes I’ve made on my local copy?

Answer:
$ svn diff

read more