﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-　　　　　　　　　　　　　礼物 ^_^ -文章分类-svn</title><link>http://www.blogjava.net/libin2722/category/39922.html</link><description>虚其心，可解天下之问；专其心，可治天下之学；静其心，可悟天下之理；恒其心，可成天下之业。</description><language>zh-cn</language><lastBuildDate>Sun, 20 Dec 2009 09:09:32 GMT</lastBuildDate><pubDate>Sun, 20 Dec 2009 09:09:32 GMT</pubDate><ttl>60</ttl><item><title>关于在Eclipse下使用Subversion教程</title><link>http://www.blogjava.net/libin2722/articles/306583.html</link><dc:creator>礼物</dc:creator><author>礼物</author><pubDate>Fri, 18 Dec 2009 08:32:00 GMT</pubDate><guid>http://www.blogjava.net/libin2722/articles/306583.html</guid><wfw:comment>http://www.blogjava.net/libin2722/comments/306583.html</wfw:comment><comments>http://www.blogjava.net/libin2722/articles/306583.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/libin2722/comments/commentRss/306583.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/libin2722/services/trackbacks/306583.html</trackback:ping><description><![CDATA[关键字: 关于在<span class="hilite1"><font style="BACKGROUND-COLOR: #ffff00">Eclipse</font></span>下使用Subversion教程 
<div class="blog_content"><div style="TEXT-INDENT: 31.5pt">工具：</div><div style="TEXT-INDENT: 31.5pt"><span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">svn</font></span>-1.3.2-setup.exe …………………………………… <span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">SVN</font></span>服务端</div><div style="TEXT-INDENT: 31.5pt">TortoiseSVN-1.3.5.6804-<span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">svn</font></span>-1.3.2.msi ……………… <span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">SVN</font></span>客户端</div><div style="TEXT-INDENT: 31.5pt">LanguagePack-1.3.5.6804-win32-zh_CN.exe …………中文语言包</div><div style="TEXT-INDENT: 31.5pt">Subclipse ………………………………………………<span class="hilite1"><font style="BACKGROUND-COLOR: #ffff00">Eclipse</font></span>插件</div><div>使用步骤：</div><div> </div><div>第一步：建立推荐的虚拟目录结构：例如：我建了一个这样的目录：D:\temp\New\, 并且, 在这个目录下创建三个文件夹，名称依次为：trunk，branches，tags。 接着把我们要控制的项目复制到trunk中。(trunk中保存)</div><div>第二步：创建Subversion仓库：例如：我在D盘建了一个名称为<span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">SVN</font></span>的文件夹，再鼠标右击， 选中TortoiseSVN-&gt;create restore here , 在点击确定即可</div><div>注：</div><div style="TEXT-INDENT: 10.5pt">Subversion的使用主要在于创建服务器端的仓库，其中关键文件在于conf文件夹中的</div><div style="TEXT-INDENT: 10.5pt">authz, svnserve.conf, passwd三个文件</div><div>其中authz用于部署访问权限，passwd文件存放访问者密码，svnserve.conf属于基本的配置文件，用于配置访问其他文件。</div><div>第三步：修改配置文件， 在Subversion仓库中的conf文件夹中的authz 中依次修改为：</div><div>[groups]</div><div>harry_and_sally = harry,sally</div><div> </div><div># [/foo/bar]</div><div>harry = rw</div><div>* =</div><div> </div><div>[/]</div><div>@harry_and_sally = rw</div><div>* = r</div><div>在passwd中依次修改为：</div><div>[users]</div><div>harry = harry</div><div>sally = sally</div><div>在svnserve.conf中依次修改为：</div><div>[general]</div><div>anon-access = none</div><div>auth-access = write</div><div>password-db = passwd</div><div>authz-db = authz</div><div>第四步：启动服务器：在命令行中依次输入：svnserve –d –r 创建Subversion仓库，</div><div>我的路径是D:\<span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">SVN</font></span></div><div>第五步：导入数据：将刚才建的虚拟目录的内容导入到Subversion仓库，按照我的例子</div><div>就应该是在New文件夹下右击，选择check out, 如图：</div><div><a href="http://www.pcdog.com/ArtImage/20070130/wx36_1.png" target="_blank"><img height="318" alt="关于在Eclipse下使用Subversion教程（图一）" src="http://www.pcdog.com/ArtImage/20070130/wx36_1.png" width="448" border="0" /></a></div><div>这将会在Subversion仓库中创建这些内容,我们可以在<span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">SVN</font></span>文件夹上右击，选中TortoiseSVN-&gt; Repo-brower 就会看到如图的内容：</div><div><a href="http://www.pcdog.com/ArtImage/20070130/wx36_2.png" target="_blank"><img alt="关于在Eclipse下使用Subversion教程（图二）" src="http://www.pcdog.com/ArtImage/20070130/wx36_2.png" width="590" border="0" /><font color="#108ac6"></font><center>点击查看大图</center></a></div><div>（注意开始的时候里面文件的版本都为1， 我这是对它操作以后的截图， 不好意思哦）</div><div>第五步：在<span class="hilite1"><font style="BACKGROUND-COLOR: #ffff00">Eclipse</font></span>中装上Subclipse插件，装好之后， 在<span class="hilite1"><font style="BACKGROUND-COLOR: #ffff00">Eclipse</font></span>中选择Windows-&gt; Show View-&gt;others 就会出现如图：</div><div><a href="http://www.pcdog.com/ArtImage/20070130/wx36_3.png" target="_blank"><img height="377" alt="关于在Eclipse下使用Subversion教程（图三）" src="http://www.pcdog.com/ArtImage/20070130/wx36_3.png" width="276" border="0" /></a>选中<span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">SVN</font></span>资源库，再在控制台上右击，选择新建-&gt; 数据库位置， 就会出现：</div><div><a href="http://www.pcdog.com/ArtImage/20070130/wx36_4.png" target="_blank"><img height="412" alt="关于在Eclipse下使用Subversion教程（图四）" src="http://www.pcdog.com/ArtImage/20070130/wx36_4.png" width="525" border="0" /></a></div><div>点Finish之后，就会在控制台上看到如图： <img height="3" alt="关于在Eclipse下使用Subversion教程（图五）" src="http://www.pcdog.com/ArtImage/20070130/wx36_5.png" width="3" border="0" /><a href="http://www.pcdog.com/ArtImage/20070130/wx36_6.png" target="_blank"><img alt="关于在Eclipse下使用Subversion教程（图六）" src="http://www.pcdog.com/ArtImage/20070130/wx36_6.png" width="590" border="0" /><font color="#108ac6"></font></a></div><div><table class="zhi14" height="317" cellspacing="0" cellpadding="0" width="688" align="center" border="0"><tbody><tr height="1"><td width="686" height="1">　</td></tr><tr height="6"><td width="686"><font color="#ff0000"></font></td></tr><tr><td valign="top" width="686" height="25"><p align="right"></p></td></tr><tr><td valign="top" width="686" height="25"><p>　　 <span id="span_text999"><br clear="all" /></span></p><div>点Finish之后，就会在控制台上看到如图： <img height="3" alt="关于在Eclipse下使用Subversion教程（图五）" src="http://www.pcdog.com/ArtImage/20070130/wx36_5.png" width="3" border="0" /><a href="http://www.pcdog.com/ArtImage/20070130/wx36_6.png" target="_blank"><img alt="关于在Eclipse下使用Subversion教程（图六）" src="http://www.pcdog.com/ArtImage/20070130/wx36_6.png" width="590" border="0" /><font color="#108ac6"></font><center>点击查看大图</center></a><p align="center"><span id="ad_pcdog_big">&lt;iframe name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-1572879403720716&amp;amp;amp;dt=1184652062593&amp;amp;amp;hl=zh-CN&amp;amp;amp;lmt=1180249587&amp;amp;amp;alternate_ad_url=http%3A%2F%2Fwww.pcdog.com%2F0000js%2Fgoogle336.htm&amp;amp;amp;format=336x280_as&amp;amp;amp;output=html&amp;amp;amp;correlator=1184652062515&amp;amp;amp;channel=6686853775&amp;amp;amp;url=http%3A%2F%2Fwww.pcdog.com%2Fedu%2Fjava%2F2007%2F02%2Fd181876_2.html&amp;amp;amp;color_bg=FFFFFF&amp;amp;amp;color_text=000000&amp;amp;amp;color_link=0000ff&amp;amp;amp;color_url=008000&amp;amp;amp;color_border=FFFFFF&amp;amp;amp;ad_type=text_image&amp;amp;amp;ref=http%3A%2F%2Fwww.pcdog.com%2Fedu%2Fjava%2F2007%2F02%2Fd181876.html&amp;amp;amp;cc=24&amp;amp;amp;flash=9&amp;amp;amp;u_h=1024&amp;amp;amp;u_w=1280&amp;amp;amp;u_ah=964&amp;amp;amp;u_aw=1280&amp;amp;amp;u_cd=32&amp;amp;amp;u_tz=480&amp;amp;amp;u_his=2&amp;amp;amp;u_java=true" frameborder="0" width="336" scrolling="no" height="280" allowtransparency="allowtransparency"&gt;&lt;/iframe&gt;</span></p></div><div>第六步：选中truck ,右击选中取出为：如图所示：</div><div><a href="http://www.pcdog.com/ArtImage/20070130/wx36_7.png" target="_blank"><img height="412" alt="关于在Eclipse下使用Subversion教程（图七）" src="http://www.pcdog.com/ArtImage/20070130/wx36_7.png" width="525" border="0" /></a></div><div>选中Finish之后就在<span class="hilite1"><font style="BACKGROUND-COLOR: #ffff00">Eclipse</font></span> 中加入了一个工作副本</div><div>如图所示：</div><div><a href="http://www.pcdog.com/ArtImage/20070130/wx36_8.png" target="_blank"><img alt="关于在Eclipse下使用Subversion教程（图八）" src="http://www.pcdog.com/ArtImage/20070130/wx36_8.png" width="590" border="0" /><font color="#108ac6"></font><center>点击查看大图</center></a></div><div>这个时候相当于在磁盘的某一个位置上建立了一个客户端，默认在<span class="hilite1"><font style="BACKGROUND-COLOR: #ffff00">Eclipse</font></span>的 workspace下的某一个文件夹下</div><div>第七步：建立分支与标记：单击需要分支与标记的项目；选中Team-&gt; 分支/标记, 会出现如图：</div><div><a href="http://www.pcdog.com/ArtImage/20070130/wx36_9.png" target="_blank"><img height="482" alt="关于在Eclipse下使用Subversion教程（图九）" src="http://www.pcdog.com/ArtImage/20070130/wx36_9.png" width="576" border="0" /></a></div><div><div>点OK 之后，就会在控制台出现：Copy-rHEADsvn://localhost/trunk/News  <span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">svn</font></span>://localhost/branches/branches_4.1 </div><div>表示已经建立了这个分支，和上面相同，在建立一个标记副本 <br clear="all" /><a href="http://www.pcdog.com/ArtImage/20070130/wx36_10.png" target="_blank"><img height="482" alt="关于在Eclipse下使用Subversion教程（图十）" src="http://www.pcdog.com/ArtImage/20070130/wx36_10.png" width="576" border="0" /></a></div><div><div align="left">就会在控制台出现：copy -rHEAD <span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">svn</font></span>://localhost/trunk/News <span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">svn</font></span>://localhost/tags/tags_4.1</div><div>第八步：建立切换，作用在于对此分支的操作不会影响到对tunck中的程序了</div><div> 选中刚才建立分支的文件夹，右击选择Team-&gt;切换 如图所示：</div><div> <a href="http://www.pcdog.com/ArtImage/20070130/wx36_11.png" target="_blank"><img alt="关于在Eclipse下使用Subversion教程（图十一）" src="http://www.pcdog.com/ArtImage/20070130/wx36_11.png" width="590" border="0" /><font color="#108ac6"></font><center>点击查看大图</center></a> </div><div> 点OK 之后， 就会在控制台上显示：switch <span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">svn</font></span>://localhost/trunk/News E:/javaStady/trunk/News -rHEAD </div><div align="left">第九步：<font style="BACKGROUND-COLOR: #ffff00">合并</font>操作. 对某些文件就可以进行一下同步了， 将新版本改变的内容整合到trunk中，在控制台上我们可以看到：merge -rHEAD:HEAD <span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">svn</font></span>://localhost/branches/branches_4.1 E:/javaStady/trunk/News</div><div align="left">    Merge complete.</div><div align="left">merge -rHEAD:HEAD <span class="hilite2"><font style="BACKGROUND-COLOR: #55ff55">svn</font></span>://localhost/branches/branches_4.1 E:/javaStady/trunk/News</div><div style="TEXT-INDENT: 21pt">Merge complete.</div><div style="TEXT-INDENT: 21pt"> </div><div style="TEXT-INDENT: 21pt">最后我们看一下TortoiseSVN-&gt; Repo-brower中的变化：</div><div style="TEXT-INDENT: 21pt"><a href="http://www.pcdog.com/ArtImage/20070130/wx36_12.png" target="_blank"><img alt="关于在Eclipse下使用Subversion教程（图十二）" src="http://www.pcdog.com/ArtImage/20070130/wx36_12.png" width="590" border="0" /><font color="#108ac6"></font><center>点击查看大图</center></a></div><div> merge实际是比较前后两个版本之间的差别，然后将这些差别应用到工作拷贝上的一个操作，根据源与目的版本号的先后，出现了“<font style="BACKGROUND-COLOR: #ffff00">合并</font>”、“撤销”等不同效果，然后通过提交（commit）来将这些效果保存到服务器端中。</div></div></div></td></tr></tbody></table></div></div><img src ="http://www.blogjava.net/libin2722/aggbug/306583.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/libin2722/" target="_blank">礼物</a> 2009-12-18 16:32 <a href="http://www.blogjava.net/libin2722/articles/306583.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Apache 整合 SVN</title><link>http://www.blogjava.net/libin2722/articles/279395.html</link><dc:creator>礼物</dc:creator><author>礼物</author><pubDate>Mon, 01 Jun 2009 06:36:00 GMT</pubDate><guid>http://www.blogjava.net/libin2722/articles/279395.html</guid><wfw:comment>http://www.blogjava.net/libin2722/comments/279395.html</wfw:comment><comments>http://www.blogjava.net/libin2722/articles/279395.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/libin2722/comments/commentRss/279395.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/libin2722/services/trackbacks/279395.html</trackback:ping><description><![CDATA[
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<meta name="ProgId" content="Word.Document" />
		<meta name="Generator" content="Microsoft Word 10" />
		<meta name="Originator" content="Microsoft Word 10" />
		<link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml" />
		<link rel="Edit-Time-Data" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_editdata.mso" />
		<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
		<!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:View>Normal</w:View>
  <w:Zoom>0</w:Zoom>
  <w:PunctuationKerning/>
  <w:DrawingGridVerticalSpacing>7.8 磅</w:DrawingGridVerticalSpacing>
  <w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery>
  <w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery>
  <w:Compatibility>
   <w:SpaceForUL/>
   <w:BalanceSingleByteDoubleByteWidth/>
   <w:DoNotLeaveBackslashAlone/>
   <w:ULTrailSpace/>
   <w:DoNotExpandShiftReturn/>
   <w:AdjustLineHeightInTable/>
   <w:BreakWrappedTables/>
   <w:SnapToGridInCell/>
   <w:WrapTextWithPunct/>
   <w:UseAsianBreakRules/>
   <w:UseFELayout/>
  </w:Compatibility>
  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
 </w:WordDocument>
</xml><![endif]-->
		<style>
				<!--
 /* Font Definitions */
 @font-face
	{font-family:宋体;
	panose-1:2 1 6 0 3 1 1 1 1 1;
	mso-font-alt:SimSun;
	mso-font-charset:134;
	mso-generic-font-family:auto;
	mso-font-pitch:variable;
	mso-font-signature:3 135135232 16 0 262145 0;}
@font-face
	{font-family:"\@宋体";
	panose-1:2 1 6 0 3 1 1 1 1 1;
	mso-font-charset:134;
	mso-generic-font-family:auto;
	mso-font-pitch:variable;
	mso-font-signature:3 135135232 16 0 262145 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-parent:"";
	margin:0cm;
	margin-bottom:.0001pt;
	text-align:justify;
	text-justify:inter-ideograph;
	mso-pagination:none;
	font-size:10.5pt;
	mso-bidi-font-size:12.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:宋体;
	mso-font-kerning:1.0pt;}
a:link, span.MsoHyperlink
	{color:blue;
	text-decoration:underline;
	text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
	{color:purple;
	text-decoration:underline;
	text-underline:single;}
 /* Page Definitions */
 @page
	{mso-page-border-surround-header:no;
	mso-page-border-surround-footer:no;}
@page Section1
	{size:595.3pt 841.9pt;
	margin:72.0pt 90.0pt 72.0pt 90.0pt;
	mso-header-margin:42.55pt;
	mso-footer-margin:49.6pt;
	mso-paper-source:0;
	layout-grid:15.6pt;}
div.Section1
	{page:Section1;}
 /* List Definitions */
 @list l0
	{mso-list-id:1072312710;
	mso-list-type:hybrid;
	mso-list-template-ids:190207768 -872514062 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
@list l0:level1
	{mso-level-text:%1、;
	mso-level-tab-stop:18.0pt;
	mso-level-number-position:left;
	margin-left:18.0pt;
	text-indent:-18.0pt;}
@list l0:level2
	{mso-level-number-format:alpha-lower;
	mso-level-text:"%2\)";
	mso-level-tab-stop:42.0pt;
	mso-level-number-position:left;
	margin-left:42.0pt;
	text-indent:-21.0pt;}
@list l0:level3
	{mso-level-number-format:roman-lower;
	mso-level-tab-stop:63.0pt;
	mso-level-number-position:right;
	margin-left:63.0pt;
	text-indent:-21.0pt;}
@list l1
	{mso-list-id:1964577235;
	mso-list-type:hybrid;
	mso-list-template-ids:-1955157556 -252177468 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
@list l1:level1
	{mso-level-number-format:alpha-lower;
	mso-level-text:%1、;
	mso-level-tab-stop:36.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
ol
	{margin-bottom:0cm;}
ul
	{margin-bottom:0cm;}
-->
		</style>
		<!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:普通表格;
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-parent:"";
	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
	mso-para-margin:0cm;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";}
</style>
<![endif]-->
		<p class="MsoNormal">
				<span lang="EN-US">Apache </span>
				<span style="font-family: 宋体;">整合</span>
				<span lang="EN-US"> SVN</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">(</span>
				<span style="font-family: 宋体; color: red;">注意</span>
				<span style="font-family: 宋体;">：</span>
		</p>
		<p class="MsoNormal" style="margin-left: 36pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">a、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span lang="EN-US">svn</span>
				<span style="font-family: 宋体;">服务端针对</span>
				<span lang="EN-US">apache</span>
				<span style="font-family: 宋体;">有两种下载版本，</span>
				<span lang="EN-US">2.0.x</span>
				<span style="font-family: 宋体;">和</span>
				<span lang="EN-US">2.2.x</span>
				<span style="font-family: 宋体;">，这个需要一一对应</span>
		</p>
		<p class="MsoNormal" style="margin-left: 36pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">b、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">在安装下面工具时请指定英文目录且其中不要有空格</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">)<o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">1、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">下载</span>
				<span lang="EN-US">apache</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<a href="http://www.apache.org/">http://www.apache.org</a>
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">2、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">下载</span>
				<span lang="EN-US">SVN</span>
				<span style="font-family: 宋体;">服务端文件</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<a href="http://subversion.tigris.org/getting.html#windows">http://subversion.tigris.org/getting.html#windows</a>
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">3、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">下载</span>
				<span lang="EN-US">SVN</span>
				<span style="font-family: 宋体;">客户端</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<a href="http://tortoisesvn.net/downloads">http://tortoisesvn.net/downloads</a>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">4、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">安装</span>
				<span lang="EN-US">apache</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span style="font-family: 宋体;">安装很简单，一路回车（其中要配置</span>
				<span lang="EN-US">apache</span>
				<span style="font-family: 宋体;">端口，一般我们使用</span>
				<span lang="EN-US">80</span>
				<span style="font-family: 宋体;">端口）</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<!--[if gte vml 1]><v:shapetype
 id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t"
 path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
 <v:stroke joinstyle="miter"/>
 <v:formulas>
  <v:f eqn="if lineDrawn pixelLineWidth 0"/>
  <v:f eqn="sum @0 1 0"/>
  <v:f eqn="sum 0 0 @1"/>
  <v:f eqn="prod @2 1 2"/>
  <v:f eqn="prod @3 21600 pixelWidth"/>
  <v:f eqn="prod @3 21600 pixelHeight"/>
  <v:f eqn="sum @0 0 1"/>
  <v:f eqn="prod @6 1 2"/>
  <v:f eqn="prod @7 21600 pixelWidth"/>
  <v:f eqn="sum @8 21600 0"/>
  <v:f eqn="prod @7 21600 pixelHeight"/>
  <v:f eqn="sum @10 21600 0"/>
 </v:formulas>
 <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
 <o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_i1025" type="#_x0000_t75" style='width:414.75pt;
 height:322.5pt'>
 <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image001.png"
  o:title=""/>
</v:shape><![endif]-->
						<!--[if !vml]-->
						<img src="file:///C:/DOCUME%7E1/ADMINI%7E1/LOCALS%7E1/Temp/msohtml1/01/clip_image002.jpg" v:shapes="_x0000_i1025" width="553" border="0" height="430" />
						<!--[endif]-->
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span style="font-family: 宋体;">安装完毕后桌面右下角会出现</span>
				<span lang="EN-US">apache</span>
				<span style="font-family: 宋体;">图标</span>
				<span lang="EN-US">
						<!--[if gte vml 1]><v:shape
 id="_x0000_i1026" type="#_x0000_t75" style='width:21pt;height:19.5pt'>
 <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image003.png"
  o:title=""/>
</v:shape><![endif]-->
						<!--[if !vml]-->
						<img src="file:///C:/DOCUME%7E1/ADMINI%7E1/LOCALS%7E1/Temp/msohtml1/01/clip_image004.jpg" v:shapes="_x0000_i1026" width="28" border="0" height="26" />
						<!--[endif]-->
				</span>
				<span style="font-family: 宋体;">，双击出现控制界面</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<!--[if gte vml 1]><v:shape
 id="_x0000_i1027" type="#_x0000_t75" style='width:414.75pt;height:261.75pt'>
 <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image005.png"
  o:title=""/>
</v:shape><![endif]-->
						<!--[if !vml]-->
						<img src="file:///C:/DOCUME%7E1/ADMINI%7E1/LOCALS%7E1/Temp/msohtml1/01/clip_image006.jpg" v:shapes="_x0000_i1027" width="553" border="0" height="349" />
						<!--[endif]-->
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">5、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">安装</span>
				<span lang="EN-US">SVN</span>
				<span style="font-family: 宋体;">服务端</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span style="font-family: 宋体;">一路回车</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">6、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">按照</span>
				<span lang="EN-US">SVN</span>
				<span style="font-family: 宋体;">客户端</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span style="font-family: 宋体;">一路回车</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">7、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span lang="EN-US">apache</span>
				<span style="font-family: 宋体;">服务启动后，在浏览器访问</span>
				<span lang="EN-US">
						<a href="http://localhost/">http://localhost</a>
				</span>
				<span style="font-family: 宋体;">，如果能找到页面则说明</span>
				<span lang="EN-US">apache</span>
				<span style="font-family: 宋体;">已经安装成功</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">8、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">拷贝</span>
				<span lang="EN-US">%SVN_HOME%\bin</span>
				<span style="font-family: 宋体;">下的</span>
				<span lang="EN-US">mod_authz_svn.so</span>
				<span style="font-family: 宋体;">和</span>
				<span lang="EN-US">mod_dav_svn.so</span>
				<span style="font-family: 宋体;">到</span>
				<span lang="EN-US">%apache_home%\moudles</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">9、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> 
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">打开</span>
				<span lang="EN-US">%apache_home%\conf\httpd.conf</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span style="font-family: 宋体;">将图中选中两行前的“</span>
				<span lang="EN-US">#</span>
				<span style="font-family: 宋体;">”去掉</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<!--[if gte vml 1]><v:shape
 id="_x0000_i1028" type="#_x0000_t75" style='width:369pt;height:161.25pt'>
 <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image007.png"
  o:title=""/>
</v:shape><![endif]-->
						<!--[if !vml]-->
						<img src="file:///C:/DOCUME%7E1/ADMINI%7E1/LOCALS%7E1/Temp/msohtml1/01/clip_image008.jpg" v:shapes="_x0000_i1028" width="492" border="0" height="215" />
						<!--[endif]-->
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">10、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">在</span>
				<span lang="EN-US">127</span>
				<span style="font-family: 宋体;">行加入如下两行</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<!--[if gte vml 1]><v:shape
 id="_x0000_i1029" type="#_x0000_t75" style='width:387pt;height:117.75pt'>
 <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image009.png"
  o:title=""/>
</v:shape><![endif]-->
						<!--[if !vml]-->
						<img src="file:///C:/DOCUME%7E1/ADMINI%7E1/LOCALS%7E1/Temp/msohtml1/01/clip_image010.jpg" v:shapes="_x0000_i1029" width="516" border="0" height="157" />
						<!--[endif]-->
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">11、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">在该文件最后加入如下</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<!--[if gte vml 1]><v:shape
 id="_x0000_i1030" type="#_x0000_t75" style='width:375.75pt;height:127.5pt'>
 <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image011.png"
  o:title=""/>
</v:shape><![endif]-->
						<!--[if !vml]-->
						<img src="file:///C:/DOCUME%7E1/ADMINI%7E1/LOCALS%7E1/Temp/msohtml1/01/clip_image012.jpg" v:shapes="_x0000_i1030" width="501" border="0" height="170" />
						<!--[endif]-->
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">12、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">在</span>
				<span lang="EN-US">d:/java/svnRepository</span>
				<span style="font-family: 宋体;">文件夹中右键</span>
				<span lang="EN-US">TortoiseSVN-&gt;create repository here</span>
				<span style="font-family: 宋体;">，将在该文件夹下建立</span>
				<span lang="EN-US">svn</span>
				<span style="font-family: 宋体;">库</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">13、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">创建</span>
				<span lang="EN-US">d:/java/Subversion/passwd </span>
				<span style="font-family: 宋体;">文件夹用来存放用户密码</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">14、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">将</span>
				<span lang="EN-US">%apache_home%\bin</span>
				<span style="font-family: 宋体;">加入环境变量</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<!--[if gte vml 1]><v:shape
 id="_x0000_i1031" type="#_x0000_t75" style='width:331.5pt;height:127.5pt'>
 <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image013.png"
  o:title=""/>
</v:shape><![endif]-->
						<!--[if !vml]-->
						<img src="file:///C:/DOCUME%7E1/ADMINI%7E1/LOCALS%7E1/Temp/msohtml1/01/clip_image014.jpg" v:shapes="_x0000_i1031" width="442" border="0" height="170" />
						<!--[endif]-->
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">15、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">创建用户</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<!--[if gte vml 1]><v:shape
 id="_x0000_i1032" type="#_x0000_t75" style='width:414.75pt;height:91.5pt'>
 <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image015.png"
  o:title=""/>
</v:shape><![endif]-->
						<!--[if !vml]-->
						<img src="file:///C:/DOCUME%7E1/ADMINI%7E1/LOCALS%7E1/Temp/msohtml1/01/clip_image016.jpg" v:shapes="_x0000_i1032" width="553" border="0" height="122" />
						<!--[endif]-->
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">16、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">重新启动</span>
				<span lang="EN-US">apache</span>
				<span style="font-family: 宋体;">，出现如下界面表示</span>
				<span lang="EN-US">apache</span>
				<span style="font-family: 宋体;">与</span>
				<span lang="EN-US">svn</span>
				<span style="font-family: 宋体;">已经整合在一起了</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt;">
				<span lang="EN-US">
						<!--[if gte vml 1]><v:shape
 id="_x0000_i1033" type="#_x0000_t75" style='width:397.5pt;height:247.5pt'>
 <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image017.png"
  o:title=""/>
</v:shape><![endif]-->
						<!--[if !vml]-->
						<img src="file:///C:/DOCUME%7E1/ADMINI%7E1/LOCALS%7E1/Temp/msohtml1/01/clip_image018.jpg" v:shapes="_x0000_i1033" width="530" border="0" height="330" />
						<!--[endif]-->
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">17、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">使用浏览器访问</span>
				<span lang="EN-US">
						<a href="http://localhost/svn">http://localhost/svn</a>
				</span>
				<span style="font-family: 宋体;">，如下登陆框表示用户配置</span>
				<span lang="EN-US">OK</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">18、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">权限配置</span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt; text-indent: -21pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">a)<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">        
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">修改</span>
				<span lang="EN-US">%apache_home%/conf/httpd.conf</span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt;">
				<span lang="EN-US">&lt;Location
/svn&gt;</span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt;">
				<span lang="EN-US">DAV svn</span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt;">
				<span lang="EN-US">SVNPath
D:/java/svnRepository</span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt;">
				<span style="color: red;" lang="EN-US">AuthzSVNAccessFile D:/java/Subversion/passwd/policy <o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt;">
				<span lang="EN-US">AuthType Basic</span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt;">
				<span lang="EN-US">AuthName
"Subversion Repository"</span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt;">
				<span lang="EN-US">AuthUserFile
D:/java/Subversion/passwd/passwords</span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt;">
				<span style="color: red;" lang="EN-US">Require valid-user<o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt;">
				<span lang="EN-US">&lt;/Location&gt;</span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt; text-indent: -21pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">b)<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">       
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体;">建立</span>
				<span style="color: red;" lang="EN-US">D:/java/Subversion/passwd/policy</span>
				<span style="font-family: 宋体; color: red;">文件</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 42pt; text-indent: -21pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">c)<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">       
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体; color: red;">在</span>
				<span style="color: red;" lang="EN-US">policy</span>
				<span style="font-family: 宋体; color: red;">文件中定义权限信息</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt; text-indent: -63pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">
								<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">                        
</span>i.<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span style="font-family: 宋体; color: red;">使用</span>
				<span style="color: red;" lang="EN-US">[groups]</span>
				<span style="font-family: 宋体; color: red;">来声明组信息（可以将</span>
				<span style="color: red;" lang="EN-US">PM</span>
				<span style="font-family: 宋体; color: red;">、</span>
				<span style="color: red;" lang="EN-US">Leader</span>
				<span style="font-family: 宋体; color: red;">、</span>
				<span style="color: red;" lang="EN-US">QA</span>
				<span style="font-family: 宋体; color: red;">、</span>
				<span style="color: red;" lang="EN-US">Development</span>
				<span style="font-family: 宋体; color: red;">、</span>
				<span style="color: red;" lang="EN-US">Project</span>
				<span style="font-family: 宋体; color: red;">设定为不同的组，每个组中有不同的成员）</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span style="font-family: 宋体; color: red;">例如：下面声明了三个组，每个组里面有不同的成员（多个成员使用逗号分隔）</span>
				<span style="color: red;" lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span lang="EN-US">[groups]</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span lang="EN-US">DevPM =
chengyongbing</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span lang="EN-US">Leader = terry</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span lang="EN-US">JWT =……<o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt; text-indent: -63pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">
								<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">                      
</span>ii.<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span lang="EN-US">[/foldername]</span>
				<span style="font-family: 宋体;">来声明某个文件目录的使用权限</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span style="font-family: 宋体;">例如：</span>
				<span lang="EN-US">JWT</span>
				<span style="font-family: 宋体;">这个组只能对</span>
				<span lang="EN-US">/projects/jingwutong</span>
				<span style="font-family: 宋体;">这个目录有读写权限，其它目录只有读权限，同时</span>
				<span lang="EN-US">terry</span>
				<span style="font-family: 宋体;">对这个目录也有读写权限（这里说明一下，如果是组需要在前面加“</span>
				<span lang="EN-US">@</span>
				<span style="font-family: 宋体;">”）</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span lang="EN-US">[/projects/jingwutong]</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span lang="EN-US">@JWT = rw</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span lang="EN-US">terry = rw</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span lang="EN-US">* = r</span>
		</p>
		<p class="MsoNormal" style="margin-left: 63pt;">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal" style="margin-left: 18pt; text-indent: -18pt;">
				<!--[if !supportLists]-->
				<span style="" lang="EN-US">
						<span style="">19、<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">             
</span></span>
				</span>
				<!--[endif]-->
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
		<p class="MsoNormal">
				<span lang="EN-US">SVN </span>
				<span style="font-family: 宋体;">中文手册：</span>
				<span lang="EN-US">
						<a href="http://svndoc.iusesvn.com/svnbook/1.4/">http://svndoc.iusesvn.com/svnbook/1.4/</a>
				</span>
		</p>
		<p class="MsoNormal">
				<span lang="EN-US">
						<o:p> </o:p>
				</span>
		</p>
<img src ="http://www.blogjava.net/libin2722/aggbug/279395.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/libin2722/" target="_blank">礼物</a> 2009-06-01 14:36 <a href="http://www.blogjava.net/libin2722/articles/279395.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>