??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲第一AV网站,久久精品国产亚洲AV高清热,亚洲成av人在线视http://www.tkk7.com/fanscial/category/6054.htmlzh-cnWed, 28 Feb 2007 03:45:32 GMTWed, 28 Feb 2007 03:45:32 GMT60Solaris下CVS常用命o(h)http://www.tkk7.com/fanscial/archive/2006/04/05/39448.htmlfantafantaWed, 05 Apr 2006 11:03:00 GMThttp://www.tkk7.com/fanscial/archive/2006/04/05/39448.htmlhttp://www.tkk7.com/fanscial/comments/39448.htmlhttp://www.tkk7.com/fanscial/archive/2006/04/05/39448.html#Feedback3http://www.tkk7.com/fanscial/comments/commentRss/39448.htmlhttp://www.tkk7.com/fanscial/services/trackbacks/39448.html 1.        CVS 环境初始?/span>

1.1         指定 CVS 库的路径 CVSROOT

在用用户名和密码登陆后Q用命?/span> vi . bash_profile

然后在最后一行添?/span>

CVSROOT Q:(x) pserver Q?/span> username@172.16.1.3 Q?/span> /app

export CVSROOT

保存后退出(命o(h)?/span> vi 的培训文)(j)

Logout 后重新登?/span>

输入命o(h) set  |  pg 可以查看当前的环境变量,是否已经?/span> CVSROOT q一?/span>

2.        CVS ?/span> 常用命o(h)

2.1         登陆 CVS 服务?/span>

命o(h)Q?/span> cvs  login

pȝ?x)提CZ输入密码Q输入正后Q就可以正常使用 cvs 的其他命令了

2.2         目首次导入

命o(h)Q?/span> cvs import -m "write some comments here" project_name vender_tag r_tag

2.3         目导出Q将代码?/span> CVS 库里导出

命o(h)Q?/span> cvs checkout project_name

2.4         提交修改后的代码

命o(h)Q?/span> cvs commit -m "write some comments here" file_name

注意Q?/span> CVS 的很多动作都是通过cvs commitq行最后确认ƈ修改的,在确认的前,q需要用户填写修Ҏ(gu)释,以帮助其他开发h员了解修改的原因。如果不用写-m "comments"而直接确?span lang="EN-US">`cvs commit file_name` 的话Q?span lang="EN-US">cvs?x)自动调用系l缺省的文字~辑?span lang="EN-US">(一般是vi)要求你写入注释?/span>

2.5         同步目

命o(h)Q?/span> cvs update -m "write some comments here" file_name|dir|none

注意Q?/span> 不要使用目首次导出后,以后p?span lang="EN-US">cvs update在导出的目目录下进行同步了Q而不是每ơ重?span lang="EN-US">cvs checkout来同步文件了。如果导出后修改了文Ӟ然后再次从导出的目目录的上一U?span lang="EN-US">cvs checkout proj{于是删除了proj目录然后重新导出Q上ơ导出后的修改就全丢了?/span>

2.6         删除文g

命o(h)Q?/span> cvs rm file_name

2.7         d文g

命o(h)Q?/span> cvs add new_file

注意Q文件必ddQ然后才能提?/span> commit

2.8         查看历史

cvs log file_name
cvs history file_name

2.9         查看本地文g与服务器文g的不?/span>

cvs diff filename

3.        CVS 日常工作程

1.         开始加入项?/span>

首先在设|完 CVSROOT 和登陆完以后Q在自己的工作目录下?/span> checkout

cvs checkout PPC Q项目名Uͼ(j)

2.         每日?/span> Daily Build 的流E?/span>

2.1          首先W一步在工作目录下面q入 PPC Q然?/span> Update   命o(h)Q?/span> cvs update

// 执行的顺序必L首先 update Q然后才能进?/span> commit {Q?/span>

下面?/span> update 的信?/span>

? DIRTestLog/TestSimple             // Q表C?/span> CVS 服务器上没有的文?/span>

? DIRTestLog/TestSimple.cpp

? DIRTestLog/simple.conf

cvs server: Updating .                     //Update 开?/span>

cvs server: Updating DIRTestBtrees         // 表示?/span> Update 某个文g?/span>

cvs server: Updating DIRTestGetIP

RCS file: /app/PrePPC/DIRTestGetIP/makefile,v

retrieving revision 1.4

retrieving revision 1.5

Merging differences between 1.4 and 1.5 into makefile

rcsmerge: warning: conflicts during merge

cvs server: conflicts found in DIRTestGetIP/makefile

C DIRTestGetIP/makefile                     //C 表示文g有冲H?/span>

U DIRTestGetIP/test.cpp                      //U 表示文g?/span> Update 下来

M DIRTestLog/core             //M 表示文g被修改,本地版本比服务器?/span>

2.2          Q开头的文g如何处理

表示你的本地有而服务器上没有,q时候你需要往 CVS 服务器添加文?/span>

cvs add 文g?/span>

cvs commit Q?/span> m  “注释?/span> 文g?/span>

q样你就可以?/span> CVS 服务器增加文件了

2.3          M 开头的文g

cvs commit Q?/span> m  “注释?/span> 文g?/span>

2.4          C 表示文g有冲H,q时需要用 vi 查看文gQ会(x)记录冲突的地?/span>

如果文g有冲H,通常是有 2 个以上的Z改了该文Ӟ可以查看历史扑ֈ相关人,然后和相关hq行认修改的地方,然后?/span> commit 文g

2.5          如何删除文g

rm filename Q文件名Q?/span>

cvs delete filename Q文件名Q?/span>

cvs commit –m ?/span> 注释 ?span style="mso-spacerun: yes">  filename Q文件名Q?/span>

2.6          d文g夹和删除文g?/span>

与添加文件与删除文gcMQ要注意的是文g夹被d后,需要里面有文g才能真正被增加到 CVS 服务器上Q删除文件夹需要先删除下面的文?/span>

 



fanta 2006-04-05 19:03 发表评论
]]>
在Spring环境下结合TestNG使用DbUnithttp://www.tkk7.com/fanscial/archive/2005/12/31/26175.htmlfantafantaSat, 31 Dec 2005 04:27:00 GMThttp://www.tkk7.com/fanscial/archive/2005/12/31/26175.htmlhttp://www.tkk7.com/fanscial/comments/26175.htmlhttp://www.tkk7.com/fanscial/archive/2005/12/31/26175.html#Feedback0http://www.tkk7.com/fanscial/comments/commentRss/26175.htmlhttp://www.tkk7.com/fanscial/services/trackbacks/26175.html阅读全文

fanta 2005-12-31 12:27 发表评论
]]>
SIP SAP?qing)SDP协议l合应用的研I??http://www.tkk7.com/fanscial/archive/2005/12/25/25364.htmlfantafantaSun, 25 Dec 2005 05:59:00 GMThttp://www.tkk7.com/fanscial/archive/2005/12/25/25364.htmlhttp://www.tkk7.com/fanscial/comments/25364.htmlhttp://www.tkk7.com/fanscial/archive/2005/12/25/25364.html#Feedback1http://www.tkk7.com/fanscial/comments/commentRss/25364.htmlhttp://www.tkk7.com/fanscial/services/trackbacks/25364.html阅读全文

fanta 2005-12-25 13:59 发表评论
]]>
单元试QTestNGQJunithttp://www.tkk7.com/fanscial/archive/2005/12/19/24587.htmlfantafantaMon, 19 Dec 2005 03:20:00 GMThttp://www.tkk7.com/fanscial/archive/2005/12/19/24587.htmlhttp://www.tkk7.com/fanscial/comments/24587.htmlhttp://www.tkk7.com/fanscial/archive/2005/12/19/24587.html#Feedback0http://www.tkk7.com/fanscial/comments/commentRss/24587.htmlhttp://www.tkk7.com/fanscial/services/trackbacks/24587.html阅读全文

fanta 2005-12-19 11:20 发表评论
]]>
TestNG ?Junit的比较(四)(j)http://www.tkk7.com/fanscial/archive/2005/12/16/24195.htmlfantafantaFri, 16 Dec 2005 05:39:00 GMThttp://www.tkk7.com/fanscial/archive/2005/12/16/24195.htmlhttp://www.tkk7.com/fanscial/comments/24195.htmlhttp://www.tkk7.com/fanscial/archive/2005/12/16/24195.html#Feedback0http://www.tkk7.com/fanscial/comments/commentRss/24195.htmlhttp://www.tkk7.com/fanscial/services/trackbacks/24195.html阅读全文

fanta 2005-12-16 13:39 发表评论
]]>
TestNG ?Junit的比较(三)(j)http://www.tkk7.com/fanscial/archive/2005/12/15/23990.htmlfantafantaThu, 15 Dec 2005 02:48:00 GMThttp://www.tkk7.com/fanscial/archive/2005/12/15/23990.htmlhttp://www.tkk7.com/fanscial/comments/23990.htmlhttp://www.tkk7.com/fanscial/archive/2005/12/15/23990.html#Feedback0http://www.tkk7.com/fanscial/comments/commentRss/23990.htmlhttp://www.tkk7.com/fanscial/services/trackbacks/23990.html阅读全文

fanta 2005-12-15 10:48 发表评论
]]>
TestNG ?Junit的比较(二)(j)http://www.tkk7.com/fanscial/archive/2005/12/14/23864.htmlfantafantaWed, 14 Dec 2005 06:25:00 GMThttp://www.tkk7.com/fanscial/archive/2005/12/14/23864.htmlhttp://www.tkk7.com/fanscial/comments/23864.htmlhttp://www.tkk7.com/fanscial/archive/2005/12/14/23864.html#Feedback1http://www.tkk7.com/fanscial/comments/commentRss/23864.htmlhttp://www.tkk7.com/fanscial/services/trackbacks/23864.html阅读全文

fanta 2005-12-14 14:25 发表评论
]]>
TestNG ?Junit的比较(一Q?/title><link>http://www.tkk7.com/fanscial/archive/2005/12/14/23780.html</link><dc:creator>fanta</dc:creator><author>fanta</author><pubDate>Wed, 14 Dec 2005 02:33:00 GMT</pubDate><guid>http://www.tkk7.com/fanscial/archive/2005/12/14/23780.html</guid><wfw:comment>http://www.tkk7.com/fanscial/comments/23780.html</wfw:comment><comments>http://www.tkk7.com/fanscial/archive/2005/12/14/23780.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/fanscial/comments/commentRss/23780.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/fanscial/services/trackbacks/23780.html</trackback:ping><description><![CDATA[     摘要:   <a href='http://www.tkk7.com/fanscial/archive/2005/12/14/23780.html'>阅读全文</a><img src ="http://www.tkk7.com/fanscial/aggbug/23780.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/fanscial/" target="_blank">fanta</a> 2005-12-14 10:33 <a href="http://www.tkk7.com/fanscial/archive/2005/12/14/23780.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>HibernateQ以前写的给公司的培训资料)(j)http://www.tkk7.com/fanscial/archive/2005/12/12/23509.htmlfantafantaMon, 12 Dec 2005 08:39:00 GMThttp://www.tkk7.com/fanscial/archive/2005/12/12/23509.htmlhttp://www.tkk7.com/fanscial/comments/23509.htmlhttp://www.tkk7.com/fanscial/archive/2005/12/12/23509.html#Feedback0http://www.tkk7.com/fanscial/comments/commentRss/23509.htmlhttp://www.tkk7.com/fanscial/services/trackbacks/23509.html阅读全文

fanta 2005-12-12 16:39 发表评论
]]>
վ֩ģ壺 ѿhƬվ| Ʒ99þѹۿ| 컶ëƬ| ŮƵվa | ˲޾Ʒ91| ҹ޹ϼ| պ޹| AV߲| ޹ۺϾƷ| ˳վۿ| ޹뾫ƷŮ˾þþò | AV뾫Ʒվ߹ۿ| ˳www| ߹ۿ˳վҹ| þһѵ| eeussӰԺ| һѹۿ| 99þ޾ƷëƬ| ŷ޹ڸ| ߲ѲavƬ| պĻƷһ| 99߹ۿƵվ| ޹AVӰԺ| ޹ƷŰ֥߹ۿ| ޹Ƶ| ŷƵ| һ| AVպAV| AV˾Ʒվ߲ | aëƬȫ| ŮƵվ| ¶ѿ| ƵƵ| պСӰ߹ۿ| 츾avһ| ˺ݺۺϾþ88| AVרAVͬ | 91ѹۿ| ƷƬѿ| žžþþƷѿС˵| ߲ѹۿ|