w3reference home
SVN Tutorial


Bookmark and Share

Create Repository

Repository is at the core of the SVN. All the files are stored in the repository in the form of hierarchy. Any number of clients can connect to the repository to access the data and edit it.
Syntax:
$ svnadmin create --fs-type fsfs repository_name
In the above syntax, svnadmin create is the command to create the repository. The --fs-type tells the type of repository that is to be created. The fsfs is the default or "Berkeley Database". Other options are given below:
  • --bdb-txn-nosync : disable fsync at transaction commit [Berkeley DB]
  • --bdb-log-keep : disable automatic log file removal [Berkeley DB]
  • --config-dir : read user configuration files from directory specified
  • --pre-1.4-compatible : use format compatible with Subversion versions earlier than 1.4
  • --pre-1.5-compatible : use format compatible with Subversion versions earlier than 1.5
Example:
$ svnadmin create --fs-type fsfs /home/user/svnrep
$
An empty directory named svnrep will be created in the path specified above.
Code Validator
Learn FTP
Color finder
Link Checker
Free web designs
Coming soon!
Interview Questions...
'w3reference : Learn by examples ... Advanced to beginner's tutorials ...'
Ajax: AJAX tutorial1 | Apache: Apache HTTP Server | Restarting Apache | CSS: CSS Border | CSS Syntax | CSS Selector | CSS Comment | CVS: CVS Release | CVS Login | CVS Logout | CVS Annotate | Databases: Rolap Tutorial | OLAP Tutorial | OLTP Tutorial | data warehousing | Expect: HTML: html | Linux: Dot (.) conf files | Linux Mount Point | Linux Filesystem | SSH Tutorial | Linux Commands: cal | cat | cfdisk | chroot | MySQL: MySQL Commands | PHP: PHP Basics | PHP Variables | PHP Output (echo/print) | PHP String Concat | PL/SQL: PL/SQL Data Types | PL/SQL Control Structures | PL/SQL File Extensions | PL/SQL DBMS_OUTPUT package | Python: My first Python program | Shell: Starting Bash | Bash Redirection | Bash Pipes | Bash Variables | SQL: SQL Transactions | SQL Constraints | SQL Drop | SQL Union & Union All | SVN: svn architecture | SVN Repository | SVN Import | SVN Checkout | Tech: soap | Web Designing: Web Hosting | HTML/XHTML/CSS code validator | Learn FTP | Search Engine Optimization Tips | www: XML: XML vs HTML | XML Syntax | XML Tags, Elements and Attributes | XML Namespaces |
Sitemap | Disclaim | Privacy Policy | Contact | ©2007-2009 w3reference.com All Rights Reserved.