fbpx

SVN (Subversion)

SVN Tips & Tricks

These are some the commands used for SVN. Checkouts repo code via file protocal svn co file://svn/PROJECT_NAME/ /TARGET_DIR/XYZ/ OR svn checkout file://svn/PROJECT_NAME/ /TARGET_DIR/XYZ/ Checkouts repo code via http protocal svn co --username USERNAME http://svn/PROJECT_NAME/ /TARGET_DIR/XYZ/ OR  svn checkout http://svn/PROJECT_NAME/ /TARGET_DIR/XYZ/ checkout repo code from external url svn checkout http://localhost/repos/PROJECT_NAME/ --username=USERNAME --password=PASSWORD Create new folder in repo svn mkdir -m "ABC" http://svn/PROJECT_NAME/ Adding...

Read more...

How to install and configure SVN on Ubuntu

Subversion – another name we known as SVN, is an open source version control system. SVN is a really easy to use Revision control/version control/source control and store changes of your project files such as coding and documentation. In this tutorial we will discuss how to install subversion on Ubuntu...

Read more...