随笔分类 -  工具

如:SVN
摘要:https://www.telerik.com/forums/how-to-automatically-re-enable-fiddle-as-system-proxy https://www.cnblogs.com/TankXiao/archive/2012/02/06/2337728.html 阅读全文
posted @ 2018-12-07 10:41 chenyizh
摘要:1、查找目录下的所有文件中是否含有某个字符串 Windows: findstr /s /i "string" *.* *.*表示所有类型的文件。 /s 表示当前目录以及所有子目录 /i 表示不区分大小写 可以参考help findstr的输出解释来使用此命令 注意:findstr.exe一般在C:\ 阅读全文
posted @ 2017-08-08 14:21 chenyizh
摘要:【查看history】 格式:svn log -l count /file/path 比如下面的命令,查看main.cpp的最近5次提交的信息 svn log -l 5 /honme/yasi//openssl-test/main.cpp 【比较不同版本】 查看最近一次提交的改动:svn diff 阅读全文
posted @ 2017-02-24 13:46 chenyizh