From 37b768006cbfaab68517f29ed5058c78e0fe40ed Mon Sep 17 00:00:00 2001 From: kiko Date: Mon, 25 Oct 2021 18:38:23 +0000 Subject: [PATCH] Add references to readme.txt git-svn-id: https://svn.barcelli.net/svn/admin-svn@2 afa8f52d-f8fe-497e-b2ae-23cba056c779 --- readme.txt | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/readme.txt b/readme.txt index 1224f21..f05026c 100644 --- a/readme.txt +++ b/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 +