Skip to content
This repository was archived by the owner on Apr 28, 2020. It is now read-only.

Latest commit

 

History

History
25 lines (18 loc) · 704 Bytes

readme.md

File metadata and controls

25 lines (18 loc) · 704 Bytes

Playing around with SVN.

Similarities with Git

Run svn status to see what's up.

Run svn add <filename> to put files/directories under version control.

Run svn diff to see modifications.

Run svn commit -m "<message>" to commit the new version of your file to the repository.

Differences with Git

Run svn update to bring your working copy “up to date” with the repository.

Branching

Run svn copy ^/trunk ^/branches/<branch> -m "<message>"

References