当前位置:网站首页>SVN如何查看修改的文件记录
SVN如何查看修改的文件记录
2022-07-03 16:59:00 【星哥玩云】
主要是有四个命令,svn log用来展示svn 的版本作者、日期、路径等等;svn diff,用来显示特定修改的行级详细信息;svn cat,取得在特定版本的某文件显示在当前屏幕;svn list,显示一个目录或某一版本存在的文件。
比较常用的是svn diff命令。它可以比较不同版本之间、svn版本和本地版本库之间,以及检查本地修改的作用。
svn diff; #什么都不加,会坚持本地代码和缓存在本地.svn目录下的信息的不同;
svn diff -r 3; #比较你的本地代码和版本号为3的所有文件的不同;
svn diff -r 3 text.c; #比较你的本地代码和版本号为3的text.c文件的不同;
svn diff -r 5:6; #比较版本5和版本6之间所有文件的不同;
svn diff -r 5:6 text.c; #比较版本5和版本6之间的text.c文件的变化。
查看修改的信息使用 log 指令,如下:
svn log; #什么都不加会显示所有版本commit的日志信息;
svn log -r 4:5; #只看版本4和版本5的日志信息;
svn log test.c; #查看文件test.c的日志修改信息;
svn log -v dir; #查看目录的日志修改信息,需要加v;
查看某个版本的某个文件内容,使用cat指令,如下:
svn cat -r 4 test.c; #查看版本4中的文件test.c的内容,不进行比较;
不用下载到本地查看文件的各种信息,使用 list 指令,如下:
svn list http://svn.test.com/svn #查看目录中的文件;
svn list -v http://svn.test.com/svn #查看详细的目录的信息(修订人,版本号,文件大小等);
边栏推荐
- MySQL Basics
- LeetCode 1656. Design ordered flow
- [combinatorics] recursive equation (definition of general solution | structure theorem of general solution of recursive equation without multiple roots)
- 数据分析必备的能力
- Fast Ethernet and Gigabit Ethernet: what's the difference?
- What material is sa537cl2? Analysis of mechanical properties of American standard container plate
- Necessary ability of data analysis
- Shentong express expects an annual loss of nearly 1billion
- [JDBC] API parsing
- SSH连接远程主机等待时间过长的解决方法
猜你喜欢
免费数据 | 新库上线 | CnOpenData中国保险中介机构网点全集数据
Shentong express expects an annual loss of nearly 1billion
One brush 149 force deduction hot question-10 regular expression matching (H)
What material is 12cr1movr? Chemical property analysis of pressure vessel steel plate 12cr1movr
29:第三章:开发通行证服务:12:开发【获得用户账户信息,接口】;(使用VO类包装查到的数据,以符合接口对返回数据的要求)(在多处都会用到的逻辑,在Controller中可以把其抽成一个共用方法)
图之深度优先搜索
Depth first search of graph
Static program analysis (I) -- Outline mind map and content introduction
网络安全web渗透技术
utfwry. Dat PHP, about ThinkPHP's method of IP location using utfwry address Library
随机推荐
CC2530 common registers for watchdog
Rsync远程同步
比亚迪、长城混动市场再“聚首”
Execute script unrecognized \r
Visual studio "usually, each socket address (Protocol / network address / port) can only be used once“
29:第三章:开发通行证服务:12:开发【获得用户账户信息,接口】;(使用VO类包装查到的数据,以符合接口对返回数据的要求)(在多处都会用到的逻辑,在Controller中可以把其抽成一个共用方法)
mysql用户管理
Difference between JSON and bson
RF Analyze Demo搭建 Step by Step
The word backspace key cannot delete the selected text, so you can only press Delete
[combinatorics] recursive equation (definition of general solution | structure theorem of general solution of recursive equation without multiple roots)
C语言按行修改文件
MySQL single table field duplicate data takes the latest SQL statement
[combinatorics] recursive equation (constant coefficient linear homogeneous recursive equation | constant coefficient, linear, homogeneous concept description | constant coefficient linear homogeneous
大变局!全国房价,跌破万元大关
Bcvp developer community 2022 exclusive peripheral first bullet
Necessary ability of data analysis
LeetCode 1656. Design ordered flow
CC2530 common registers for port interrupts
Fast Ethernet and Gigabit Ethernet: what's the difference?