summaryrefslogtreecommitdiff
path: root/release/release.conf.sample
diff options
context:
space:
mode:
authorGlen Barber <gjb@FreeBSD.org>2014-02-25 22:13:48 +0000
committerGlen Barber <gjb@FreeBSD.org>2014-02-25 22:13:48 +0000
commit9bb84a63b7889d9d21c5e2c6d1a7d30b95453f7e (patch)
tree8c0963b4e1a4523977d0d7d25799e0045f0f8132 /release/release.conf.sample
parent70c9dd3e3d5de066b62dc32e078f90457dbbd148 (diff)
downloadsrc-test-9bb84a63b7889d9d21c5e2c6d1a7d30b95453f7e.tar.gz
src-test-9bb84a63b7889d9d21c5e2c6d1a7d30b95453f7e.zip
release.sh:
- Add a VCSCMD variable that defaults to 'svn checkout', and update places 'svn co' is used directly. - After sourcing a configuration file, prefix SRCBRANCH, PORTBRANCH, and DOCBRANCH with the SVNROOT. - Properly capitalize 'FreeBSD.org' in the default SVNROOT. - Update Copyright. release.conf.sample: - Add an example to use git instead of svn, by nullifying SVNROOT, and setting SRCBRANCH, DOCBRANCH, and PORTBRANCH to the URL fo a git repository. release.7: - Document VCSCMD. Submitted by: Rick Miller (based on) Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=262499
Diffstat (limited to 'release/release.conf.sample')
-rw-r--r--release/release.conf.sample9
1 files changed, 8 insertions, 1 deletions
diff --git a/release/release.conf.sample b/release/release.conf.sample
index 882f911b31fd8..df42ca756bfad 100644
--- a/release/release.conf.sample
+++ b/release/release.conf.sample
@@ -7,7 +7,7 @@
CHROOTDIR="/scratch"
## Set the svn host.
-SVNROOT="svn://svn.FreeBSD.org"
+SVNROOT="svn://svn.FreeBSD.org/"
## Set the src/, ports/, and doc/ branches or tags.
SRCBRANCH="base/head@rHEAD"
@@ -17,6 +17,13 @@ PORTBRANCH="ports/head@rHEAD"
## Run svn co --force for src checkout.
#SRC_FORCE_CHECKOUT=yes
+## Sample configuration for using git instead of svn.
+#VCSCMD="/usr/local/bin/git clone --branch master"
+#SVNROOT=""
+#SRCBRANCH="https://github.com/freebsd/freebsd"
+#DOCBRANCH="https://github.com/freebsd/freebsd-doc"
+#PORTBRANCH="https://github.com/freebsd/freebsd-ports"
+
## Set to override the default target architecture.
#TARGET="amd64"
#TARGET_ARCH="amd64"