The Subversion Status command give you the status of the local working directory. Type this command in the Terminal to display the status.
svn status |
cloud engineer
The Subversion Status command give you the status of the local working directory. Type this command in the Terminal to display the status.
svn status |
svn status
Typically, you use the Subversion Import command to start or add a new project to a remote repository. Subversion recommends that you setup three directories called trunk, tags and branches under each project in a repository. Trunk will be the current version you are working on. Tags are for releases. Branches are when you fork projects based on one particular release. The following directory format under each project is recommended.
repository/project/trunk /tags /branches |
repository/project/trunk /tags /branches
Once the directories are setup, you can then perform the import command to upload a new project to the repository. Just the following command in the Terminal.
svn import project http://repository -m "Place comments here." |
svn import project http://repository -m "Place comments here."
Subversion Tags are snapshots of a project at a certain time. Tags are ideal for version releases. To create a tag, you will need to type the following command in the Terminal. It’s a good idea when creating a project that you create a tag directory under the project directory. The tag directory will be the place where you can store all your tag releases in an organized way.
svn copy http://repository/project/trunk \ http://repository/project/tags/1.0 \ -m "Place comments here." |
svn copy http://repository/project/trunk \ http://repository/project/tags/1.0 \ -m "Place comments here."