Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

...

URL

http://svn.ucdavis.edu

Repository Root

http://svn.ucdavis.edu/svnrepos

ViewCVS

http://svn.ucdavis.edu/viewcvs/

Version

1.12.4 3 (r13838r15833))


Basic Work Cycle:

  • Update your working copy
    • svn update
      • (NOTE: Not the same as cvs update!!)
  • Make changes
    • svn add
    • svn delete
    • svn copy
    • svn move
  • Examine your changes
    • svn status
      • (NOTE: Use this for Similar to cvs update!!)
    • svn diff
    • svn revert
  • Merge others' changes
    • svn merge
    • svn resolved
  • Commit your changes
    • svn commit

Subversion Module/Project Structure

  • The following is an outline of the SOM, SVM, and IET module/project structure;

...

titleModule/Project structure

Repository:
../svnrepos/

Modules:
../svnrepos/SOM/
../svnrepos/SVM/
../svnrepos/IET/
../svnrepos/...

...

  • (info) The current setup follows this structure of using TRUNK, BRANCHES, and TAGS subfolders as recommended by Subversion

Projects:
../svnrepos/SOM/trunk/project-1
../svnrepos/SVN/trunk/project-2
../svnrepos/IET/trunk/project-3
...

...