From 0d73ce12e751192ef6e3a8acdcf136a5a60c9439 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 14 Sep 2012 22:28:19 -0700 Subject: [PATCH] docs: Remove references to Subversion, replace with wiki link --- docs-xml/Samba3-HOWTO/TOSHARG-Compiling.xml | 115 ++-------------------------- 1 file changed, 8 insertions(+), 107 deletions(-) diff --git a/docs-xml/Samba3-HOWTO/TOSHARG-Compiling.xml b/docs-xml/Samba3-HOWTO/TOSHARG-Compiling.xml index e4baca4033b..d7d3e557745 100644 --- a/docs-xml/Samba3-HOWTO/TOSHARG-Compiling.xml +++ b/docs-xml/Samba3-HOWTO/TOSHARG-Compiling.xml @@ -20,7 +20,7 @@ you can download Samba from Subversion or using rsync. -Access Samba Source Code via Subversion +Access Samba Source Code via GIT @@ -28,115 +28,16 @@ you can download Samba from Subversion or using rsync. Subversion -Samba is developed in an open environment. Developers use a -Subversion to checkin (also known as -commit) new source code. Samba's various Subversion branches can -be accessed via anonymous Subversion using the instructions -detailed in this chapter. - - - -This chapter is a modified version of the instructions found at the -Samba Web site. +Samba is developed in an open environment. Developers use +GIT to checkin (also known as +commit) new source code. See the +Using +Git for Samba Development page in the Samba wiki. - -Subversion Access to samba.org - - -The machine samba.org runs a publicly accessible Subversion -repository for access to the source code of several packages, -including Samba, rsync, distcc, ccache, and jitterbug. There are two main ways -of accessing the Subversion server on this host. - - - -Access via ViewCVS - - - -SVNweb -You can access the source code via your favorite WWW browser. This allows you to access -the contents of individual files in the repository and also to look at the revision -history and commit logs of individual files. You can also ask for a diff -listing between any two versions on the repository. - - - -Use the URL -http://viewcvs.samba.org/. - - - - -Access via Subversion - - -Subversion -You can also access the source code via a normal Subversion client. This gives you much more control over what -you can do with the repository and allows you to check out whole source trees and keep them up to date via -normal Subversion commands. This is the preferred method of access if you are a developer and not just a -casual browser. - - -In order to be able to download the Samba sources off Subversion, you need -a Subversion client. Your distribution might include one, or you can download the -sources from http://subversion.tigris.org/. - - - -To gain access via anonymous Subversion, use the following steps. - - - - Retrieving Samba using Subversion - - - - Install a recent copy of Subversion. All you really need is a - copy of the Subversion client binary. - - - - - - Run the command - - svn co svn://svnanon.samba.org/samba/trunk samba. - - - - - This will create a directory called samba containing the - latest Samba source code (usually the branch that is going to be the next major release). This - currently corresponds to the 3.1 development tree. - - - - Subversion branches other then trunk can be obtained by adding branches/BRANCH_NAME to the URL you check - out. A list of branch names can be found on the Development page of the Samba Web site. A - common request is to obtain the latest 3.0 release code. This could be done by using the following command: - - svn co svn://svnanon.samba.org/samba/branches/SAMBA_3_0 samba_3. - - - - - - - Whenever you want to merge in the latest code changes, use the following command from within the Samba - directory: - - svn update - - - - - - - @@ -158,7 +59,7 @@ To gain access via anonymous Subversion, use the following steps. The disadvantage of the unpacked trees is that they do not support automatic - merging of local changes as Subversion does. rsync access is most convenient + merging of local changes as GIT does. rsync access is most convenient for an initial install. -- 2.11.4.GIT