- 论坛徽章:
- 0
|
![]()
文件:
svnbook.pdf
大小:
2184KB
下载:
下载
Learn SVN
1. svn help *
2. knowledges
svn mdoe: copy-modify-merge
trunk, branch, tags
3. common svn instructions
$Path=file:///...
svnadmin create $DIR
svn import $DIR $Path [-m $comment]
svn list $Path
svn checkout $Path [$(DIR)] [-r $version]
svn delete $Path [-m $comment]
svn update [-r $version] //repos to local
svn add
svn delete
svn move
svn copy
svn mkdir
svn status
svn diff //svn diff > patchfile
svn revert
svn commit [-m $comment]
svn log [-r $version] [$File]
svn diff [-r $version] [-c $version]
svn diff -r 2:8
svn diff -c 3 //2:3
svn cat $Path [-r $version] [$File]
svn export $Path [-r $version]
svn remove == svn delete??
trunk and branch
svnadmin create $DIR
svn import $DIR $Path [-m $comment]
svn checkout $Path [$(DIR)]
svn mkdir $DIR
svn commit
svn copy $Path1 $Path2
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/101003/showart_2135657.html |
|