- 系统里已经安装上了svn服务
- 新建文件
- 在新建的文件里面建立一个版本库
- 版本库的配置
- 重启svn服务
- 初充一:若想达到客户端提交文件,服务器下某个目录(假如目录名为html)也同步自动更新,采用下面的方法(钩子)
第一步:服务器上检出
svn co svn://localhost/could (小乌龟连得地址) html(服务器文件夹地址)
第二步:新建post-commit文件
[[email protected] hooks]# pwd
/application/svndata/could/hooks
[[email protected] hooks]# vi post-commit
[[email protected] hooks]# cat post-commit
#!/bin/bash
WEB=/var/www/html/
export.UTF-8
svn update $WEB --username svnserver --password ‘svnserverpwd‘
[[email protected] hooks]# chmod 755 post-commit
[[email protected] hooks]# ll post-commit
-rwxr-xr-x. 1 root root 116 May 9 21:18 post-commit
[[email protected] hooks]# ./post-commit
At revision 5. - 在./post-commit的时候 遇见了个编码的问题,显示的结果如下
[[email protected] hooks]# ./post-commit
-bash: ./post-commit: /bin/bash^M: bad interpreter: 没有那个文件或目录
- 处理办法是:在linux系统
yun install dos2unix -y
然后在 dos2unix post-commit(就是对文件进行编码处理吧).
这样再进行./post-commit的时候就没问题了。
好的安装介绍地址:http://gongwen.sinaapp.com/article-135.html