随笔分类 -  SVN

摘要:注:1.我这里不认subversion 只认svn.. 2.按照原文例子,配置文件的目录应该为:/opt/svndata/kuming/conf/原文:http://holy2010.blog.51cto.com/1086044/3442361.安装#yum install subversion测试安装是否成功:#svnserve –version回车显示版本说明安装成功2.配置·建立版本库#mkdir /opt/svndata创建svn数据目录#svnadmin create /opt/svndata/kuming kuming就是版本库的名字,可以改变!·修改版本库配置 阅读全文
posted @ 2012-12-06 09:57 Leo Forest 阅读(191) 评论(0) 推荐(0)
摘要:svn commit -m `cat /tmp/sometext`报错commit failed: 'xxx' is not under version control原来是shell命令外面忘记加引号了。。。svn commit -m "`cat /tmp/sometext`"顺利提交 阅读全文
posted @ 2012-07-24 09:30 Leo Forest 阅读(722) 评论(0) 推荐(0)