in reply to Re^4: Learning How to Use CVS for Personal Perl Coding Practices
in thread Learning How to Use CVS for Personal Perl Coding Practices
Yeah, you need to give the full path, e.g.
Regarding the $EDITOR variable, you should set that to your favourite editorsvn import . file:///home/neversaint/subversion/Project1 -m "Initial i +mport"
orexport EDITOR=/usr/bin/emacs
then you can specify the subversion commands without the -m and have it call the editor for manual message entry automatically if you prefer. Add the line to .bashrc to have it done for you automatically when you log in.export EDITOR=/usr/bin/vi
Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it. -- Brian W. Kernighan
In Section
Seekers of Perl Wisdom