Add references to readme.txt
git-svn-id: https://svn.barcelli.net/svn/admin-svn@2 afa8f52d-f8fe-497e-b2ae-23cba056c779
This commit is contained in:
parent
58dfa4cecc
commit
37b768006c
27
readme.txt
27
readme.txt
|
@ -4,10 +4,33 @@ PROVIDE ACCESS (Users will have access to all repositories in the server)
|
|||
sudo htpasswd -m /etc/apache2/dav_svn.passwd user1
|
||||
|
||||
|
||||
CREATE A NEW REPOSITORY
|
||||
-----------------------
|
||||
CREATE A NEW REPOSITORY (on the server by the administrator)
|
||||
------------------------------------------------------------
|
||||
|
||||
sudo svnadmin create /var/www/svn/myrepo
|
||||
sudo chown -R www-data:www-data /var/www/svn/myrepo
|
||||
sudo chmod -R 775 /var/www/svn/myrepo
|
||||
|
||||
|
||||
CHECKOUT A REPO (on the user local PC)
|
||||
--------------------------------------
|
||||
|
||||
svn co https://svn.barcelli.net/svn/myrepo #checkout the whole repo
|
||||
svn co https://svn.barcelli.net/svn/myrepo/trunk #checkout the trunk
|
||||
svn co https://svn.barcelli.net/svn/myrepo/branches/my-branch #checkout a branch
|
||||
|
||||
|
||||
CREATE A NEW BRANCH (on the user local PC)
|
||||
------------------------------------------
|
||||
|
||||
svn cp https://svn.barcelli.net/svn/myrepo/trunk \
|
||||
https://svn.barcelli.net/svn/branches/my-branch \
|
||||
-m'Create a privante branch of /myrepo/trunk'
|
||||
|
||||
|
||||
REFERENCES
|
||||
----------
|
||||
|
||||
https://svnbook.red-bean.com/en/1.7/index.html #Version Control with Subversion
|
||||
https://subversion.apache.org/docs/ #Subversion official documentation
|
||||
|
||||
|
|
Loading…
Reference in a new issue