From owner-svn-doc-head@FreeBSD.ORG Tue May 29 12:46:34 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 15443106566C; Tue, 29 May 2012 12:46:34 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D9A918FC0A; Tue, 29 May 2012 12:46:33 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4TCkXpd077881; Tue, 29 May 2012 12:46:33 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4TCkXeq077879; Tue, 29 May 2012 12:46:33 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201205291246.q4TCkXeq077879@svn.freebsd.org> From: Isabell Long Date: Tue, 29 May 2012 12:46:33 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38928 - head/en_US.ISO8859-1/articles/committers-guide X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 May 2012 12:46:34 -0000 Author: issyl0 Date: Tue May 29 12:46:33 2012 New Revision: 38928 URL: http://svn.freebsd.org/changeset/doc/38928 Log: Update the vendor imports section of the Subversion Primer to reflect changes in the wiki page. Reviewed by: gavin Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/articles/committers-guide/article.sgml Modified: head/en_US.ISO8859-1/articles/committers-guide/article.sgml ============================================================================== --- head/en_US.ISO8859-1/articles/committers-guide/article.sgml Tue May 29 05:31:22 2012 (r38927) +++ head/en_US.ISO8859-1/articles/committers-guide/article.sgml Tue May 29 12:46:33 2012 (r38928) @@ -2462,6 +2462,47 @@ $target - head/$source:$P,$Q,$R from a consistent state with old code, to a consistent state with new code. + + + From scratch + + + Importing into the vendor tree + + This section is an example of importing and tagging + baycc into + head. + + First, prepare the directory in + vendor: + + &prompt.user; svn co --depth immediates $FSVN/vendor +&prompt.user; cd vendor +&prompt.user; svn mkdir byacc +&prompt.user; svn mkdir byacc/dist + + Now, import the sources into the + dist directory. Once + the files are in place, svn add the new + ones, then svn commit and tag the + imported version. To save time and bandwidth, direct remote + committing and tagging is possible: + + &prompt.user; svn cp -m "Tag byacc 20120115" $FSVN/vendor/byacc/dist $FSVN/vendor/byacc/byacc-20120115 + + + + Merging to head + + Due to this being a new file, copy it for the + merge: + + &prompt.user; svn cp -m "Import byacc to contrib" $FSVN/vendor/byacc/dist $FSVN/head/contrib/byacc + + Working normally on newly imported sources is still + possible. + +