Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added Using SVN commands

...

 Submitting your Homework from the Clear Network (Using Turnin)

  1. Make sure you are in your turnin directory.
    cd ~/comp311/<your netid>
     
  2. All of your files for your nth homework assignment should be in a subdirectory named hw_nSubmit the folder hw_n
    turnin COMP311-FALL15-F16:hw_n
    This should show all your files being added to the Subversion repository.

 

Submitting your Homework from the Clear Network (Using SVN commands)

  1. Make sure you are in your turnin directory.
    cd ~/comp311/<your netid>
     
  2. To check the status of your current directory, run :
    svn status 
    This should show all your files that are added(A) / not added(?) / deleted(D) / modified (M) to the Subversion repository.

  3. To add folders/ files, use : 
    svn add <<file_name>> (without angle brackets)
    svn add <<folder_name>> (without angle brackets) – recursively adds all files in it
    This should show all files/ folders that have been added to the Repository (this is still a local copy)

    1. To delete folders/ files, use : 
      svn del <<file_name>> (without angle brackets)
      svn del <<folder_name>> (without angle brackets) – recursively adds all files in it
      This should show all files/ folders that have been deleted to the Repository (this is still a local copy)

  4. To commit your files, use: 
    svn ci -m "Some relevant message here"
    This should show all the files that have been added/ modified/ deleted ... followed by
    -- Transmitting file data.
    -- Committed revision <<rev. no>>

  5. And you have successfully added your folder to the SVN repository. Visit repo on the browser to confirm that all the file structure is intact.