So I know how people are having a hard time getting svn working correctly and I thought I&#39;d share some useful aliases Ive been using.  <br><br>A short explaination of aliases:  you can define your own commands in the terminal by setting &#39;aliases&#39;.  These are defined in the &#39;.aliases&#39; file.  To see your current aliases, type &#39;alias&#39; in the terminal.  This will give you a good idea of what they do.<br>
<br>You can just copy/paste these into your .aliases file (it&#39;s a hidden file in the home dir) and put in your netid.  You will then need to run &#39;source .aliases&#39; or restart your terminal for them to work.  <br>
<br>Here is the most useful one:<br>
<br>
<b>alias svncp     &#39;svn copy <a href="http://class.ged.idyll.org/svn/nermal/trunk">http://class.ged.idyll.org/svn/nermal/trunk</a> <a href="http://class.ged.idyll.org/svn/nermal/">http://class.ged.idyll.org/svn/nermal/</a>\!:1 -m \!:2*&#39;</b><br>

Usage: svncp &lt;destination&gt; &quot;&lt;comment&gt;&quot;<br>
Example: svncp hw8 &quot;turning in hw8&quot;<br>
<br>Use this to turn in homework!  I
would actually recommend naming it something else instead of &#39;svncp&#39;
though as &#39;svn cp&#39; is also a valid command and will cause entirely different
results. <br><br><br><br>This will checkout a new copy into &lt;destination dir&gt;.  So if you
are in your home folder and type &#39;checkout cse491&#39; it will make a
folder and put trunk, hw1, ... hw8 in the cse491 folder. (assuming your repository is set up with trunk, hw1, ... hw8 in the root directory)  This is
probably what you want to do.<br><br><b>alias checkout     &#39;svn checkout <a href="http://class.ged.idyll.org/svn/nermal/">http://class.ged.idyll.org/svn/nermal/</a> \!*&#39;</b><br>Usage: checkout &lt;destination dir&gt;<br>
Example: checkout cse491<br><br><br><br>This one is just me being lazy.  feel free to skip it.<br><br>alias commit     &#39;svn commit -m \!*&#39;<br>Usage: commit &quot;&lt;your comment here&gt;&quot;<br><br><br><br><br>
<br><br><br><br><br>