linux svn客户端 常用命令
查看文件或者目录状态:
[root@v01 ~]# svn status online/ #正常情况下没显示
[root@v01 ~]# svn status online/ #如果有变动会有如下显示【?:不在svn的控制中;M:内容被修改;C:发生冲突;A:预定加入到版本库;K:被锁定】
M online/index.html
[root@v01 ~]# svn status -v online/ #svn status -v path(显示文件和子目录状态)
1 1 user001 online
M 1 1 user001 online/index.html
第一列保持相同,第二列显示工作版本号,第三和第四列显示最后一次修改的版本号和修改人。
注:svn status、svn diff和 svn revert这三条命令在没有网络的情况下也可以执行的,原因是svn在本地的.svn中保留了本地版本的原始拷贝。
简写:svn st
将改动的文件提交到版本库:
[root@v01 ~]# cd online/
[root@v01 online]# ls
index.html
[root@v01 online]# svn commit -m "add test file for mytest" index.html
Sending index.html
Transmitting file data .
Committed revision 2.
[root@v01 ~]# svn status -v online/
1 1 user001 online
2 2 user001 online/index.html
[root@v01 ~]# svn status online/
[root@v01 ~]# 提交成功 客户段与服务端代码一致!
svn commit -m “LogMessage“ [-N] [--no-unlock] PATH(如果选择了保持锁,就使用–no-unlock开关)
加锁/解锁:
svn lock -m “LockMessage“ [--force] PATH
例如:svn lock -m “lock test file“ test.php
svn unlock PATH
更新到某个版本:
svn update -r m path
例如:
svn update如果后面没有目录,默认将当前目录以及子目录下的所有文件都更新到最新版本。
svn update -r 200 test.php(将版本库中的文件test.php还原到版本200)
svn update test.php(更新,于版本库同步。如果在提交的时候提示过期的话,是因为冲突,需要先update,修改文件,然后清除svn resolved,最后再提交commit)
简写:svn up
添加一个文件到工作拷贝:
$ svn co http://host/myproject working_copy # Substitute for whatever URL you need to access your repository.
$ cd working_copy
$ mkdir sample
$ svn add sample
$ svn ci -m "Commit!"
[root@v01 www]# cp authz webtest/
[root@v01 www]# svn status webtest/
? webtest/authz
[root@v01 www]# cd webtest/
[root@v01 webtest]# ls
authz index.html index.php
[root@v01 webtest]# svn add authz
A authz
[root@v01 www]# svn add webtest/ index.html
svn: '.' is not a working copy
--------------------------------------------------------------------------
[root@v01 www]# ll -all webtest/
total 12
drwxr-xr-x. 3 www www 4096 May 9 08:49 .
dr-xr-xr-x. 5 www www 4096 May 9 08:49 ..
drwxr-xr-x. 6 root root 4096 May 9 08:47 .svn
[root@v01 webtest]# tree .
.
├── index.html
└── index.php 0 directories, 2 files
[root@v01 www]# cp index.{html,php} webtest/
cp: overwrite `webtest/index.html'? y
cp: overwrite `webtest/index.php'? y
[root@v01 www]# svn status -v webtest/
0 0 ? webtest
A 0 ? ? webtest/index.html
A 0 ? ? webtest/index.php
[root@v01 www]# svn status webtest/
A webtest/index.html
A webtest/index.php
[root@v01 webtest]# svn ci
svn: Commit failed (details follow):
svn: Could not use external editor to fetch log message; consider setting the $SVN_EDITOR environment variable or using the --message (-m) or --file (-F) options
svn: None of the environment variables SVN_EDITOR, VISUAL or EDITOR are set, and no 'editor-cmd' run-time configuration option was found
追加到/etc/bashrc
export SVN_EDITOR=vim
[root@v01 webtest]# source /etc/bashrc
[root@v01 webtest]# svn ci
sh: vim: command not found
svn: Commit failed (details follow):
svn: system('vim svn-commit.tmp') returned 32512
[root@v01 webtest]# svn ci Log message unchanged or not specified
(a)bort, (c)ontinue, (e)dit:
c
Authentication realm: <svn://192.168.1.89:3690> 18ab87c6-8455-4174-a313-7b6fd3775a73
Password for 'root':
Authentication realm: <svn://192.168.1.89:3690> 18ab87c6-8455-4174-a313-7b6fd3775a73
Username: user01
Password for 'user01': -----------------------------------------------------------------------
ATTENTION! Your password for authentication realm: <svn://192.168.1.89:3690> 18ab87c6-8455-4174-a313-7b6fd3775a73 can only be stored to disk unencrypted! You are advised to configure
your system so that Subversion can store passwords encrypted, if
possible. See the documentation for details. You can avoid future appearances of this warning by setting the value
of the 'store-plaintext-passwords' option to either 'yes' or 'no' in
'/root/.subversion/servers'.
-----------------------------------------------------------------------
Store password unencrypted (yes/no)? yes
Adding index.html
Adding index.php
Transmitting file data ..
Committed revision 1.
[root@v01 webtest]# echo "hello world" >> index.html
[root@v01 webtest]# svn status
? svn-commit.tmp
M index.html
[root@v01 webtest]# svn ci Log message unchanged or not specified
(a)bort, (c)ontinue, (e)dit:
c
Sending index.html
Transmitting file data .
Committed revision 3.
查看日志:
svn log path
例如:svn log test.php 显示这个文件的所有修改记录,及其版本号的变化
[root@v01 webtest]# svn log index.html
------------------------------------------------------------------------
r3 | user01 | 2016-05-09 11:40:24 +0800 (Mon, 09 May 2016) | 1 line ------------------------------------------------------------------------
r2 | user01 | 2016-05-09 11:39:21 +0800 (Mon, 09 May 2016) | 1 line ------------------------------------------------------------------------
r1 | user01 | 2016-05-09 11:33:04 +0800 (Mon, 09 May 2016) | 1 line -----------------------------------------------------------------------
查看文件详细信息
svn info path
例如:svn info test.ph
[root@v01 webtest]# svn info index.html
Path: index.html
Name: index.html
URL: svn://192.168.1.89/webtest/index.html
Repository Root: svn://192.168.1.89/webtest
Repository UUID: 18ab87c6-8455-4174-a313-7b6fd3775a73
Revision: 3
Node Kind: file
Schedule: normal
Last Changed Author: user01
Last Changed Rev: 3
Last Changed Date: 2016-05-09 11:40:24 +0800 (Mon, 09 May 2016)
Text Last Updated: 2016-05-09 11:40:03 +0800 (Mon, 09 May 2016)
Checksum: 6f9361a19c3f7bb3c06d0fdadbfe479b
比较差异
svn diff path(将修改的文件与基础版本比较)
例如:svn diff test.php
svn diff -r m:n path(对版本m和版本n比较差异)
例如:svn diff -r 200:201 test.php
简写:svn di
[root@v01 webtest]# svn di -r 1:3 index.html
Index: index.html
===================================================================
--- index.html (revision 1)
+++ index.html (revision 3)
@@ -1 +1,2 @@
-testweb
+kkkkkkkkkkktestweb
+hello world [root@v01 webtest]# svn di -r 1:2 index.html
Index: index.html
===================================================================
--- index.html (revision 1)
+++ index.html (revision 2)
@@ -1 +1 @@
-testweb
+kkkkkkkkkkktestweb
[root@v01 webtest]# svn di -r 2:3 index.html
Index: index.html
===================================================================
--- index.html (revision 2)
+++ index.html (revision 3)
@@ -1 +1,2 @@
kkkkkkkkkkktestweb
+hello world
[root@v01 webtest]#
linux svn客户端 常用命令的更多相关文章
- SVN客户端常用命令
1. 将文件checkout到本地目录 svn checkout path(path是服务器上的目录) 例如: cd /home/www #进入准备获取的项目路径 svn checkout svn: ...
- linux svn 客户端基本使用命令
1.从svn获取项目 svn co URL --username XX --password XX; 2.添加code file svn add codeFile; svn ci -m "c ...
- Linux查看系统配置常用命令
Linux查看系统配置常用命令: 系统 # uname -a # 查看内核/操作系统/CPU信息# head -n 1 /etc/issue # 查看操作系统版本# cat /proc/cpuinfo ...
- linux vi编辑常用命令
linux vi编辑常用命令 来源:互联网 作者:佚名 时间:07-10 21:31:14 [大 中 小] linux vi编辑常用命令,需要的朋友可以参考下 vi编辑器中有三种状态模式 1. ...
- Linux 系统巡检常用命令
Linux系统巡检常用命令 # uname -a # 查看内核/操作系统# cat /etc/centos-release # 查看centos操作系统版本# cat /proc/cpuinfo ...
- linux 下 mysql 常用命令
linux 下 mysql 常用命令 阅读目录 ====================== 1.开启和关闭 1.1.开启 1.2.关闭 1.3.重启 2.登录 2.1.密码明文 2.2.密码密文 ...
- linux:终端常用命令 + vi命令修改文件及保存 方法
首先介绍一下Ubuntu下各个目录的一般作用: / 这就是根目录,一台电脑有且只有一个根目录,所有的文件都是从这里开始的.举个例子:当你在终端里输入“/home”,你其实是在告诉电脑,先从/(根目录 ...
- Linux学习之CentOS(二)--初识linux的一些常用命令
Linux学习之CentOS(二)--初识linux的一些常用命令 在VM上安装完了CentOS6.4以后,看着linux系统成功跑起来,心里小激动了一把......但是前方学习的道路还很遥远... ...
- Apache RocketMQ在linux上的常用命令
Apache RocketMQ在linux上的常用命令 进入maven安装后的rocketmq的bin目录 1.启动Name Server 2.启动Broker 3.关闭Name Server 4 ...
随机推荐
- 根据.MDF文件查看 SQL数据库的版本信息
http://www.cnblogs.com/eason-chan/p/3695753.html?utm_source=tuicool 手上有 经理带来的一个教学管理系统,由于不知道开发环境,在向SQ ...
- 代码重构-2 简单不变的 if else 用字典代替
原代码 private string GetExDesc(string lotteryCode) { string exDesc = "抽奖"; if (lotteryCode.T ...
- java 打包jar文件以在没有安装JDK或JRE的机子上运行
前言: java号称“一次编译,到处运行”,但这有个前提,那就是你的机子上得安装java环境.对于开发人员或其他一些比较懂计算机的人来说这没什么,但是对于一些不懂计算机的人来说这会很麻烦,他们更希望的 ...
- hdu 1049 Climbing Worm
解题思路: 1. 两种情况,0x1:井深度小于一次跳的高度.0x2:井深度大于一次跳的高度 2.如果 属于 0x1 则一次跳出 3.否则 本次解题中直接枚举跳的次数 一直循环,直到 [每次跳的真实高度 ...
- webform添加到webapi的支持
1.添加引用 添加对 System.Net.Http , System.Net.Http.Formatting , System.Web.Http , System.Web.Http.Common , ...
- golang社工库数据扫描程序
https://github.com/xiaojiong/scanfile 演示站点: http://www.weigongkai.com/ 7G数据 2s完成扫描 package scanfil ...
- php-5.3 zend opcache 的设置
故障现象,修改了代码上传到生产服务器之后,需要等待60秒才生效. 细查了一下,是opcache引起的,默认是60秒.于是我给关了,之前是ea加速,现在新版本的php好像用这个opcache了:; 2s ...
- c#之Redis实践list,hashtable
写在前面 最近公司搞了一个活动,用到了redis的队列,就研究了下redis的相关内容.也顺手做了个demo. C#之使用Redis 可以通过Nuget安装Reidis的相关程序集.安装之后发现会引入 ...
- CentOS创建免密码SSH(密钥)
1.输入以下命令:ssh-keygen -t rsa 2.输入命令ls:产生两个文件:id_rsa id_rsa.pub 3.复制id_rsa.pub,并命名为authorized_key cp ~/ ...
- 记一个奇怪的python异常处理过程
我的一个程序, 总是在退出时报异常, Exception TypeError: "'NoneType' object is not callable" in <functio ...