想在fedora上进行代码的更新编译工作,于是安装了一个svn,其实很简单
http://subversion.apache.org/packages.html#fedora
Fedora Linux
$ yum install subversion
检出文件(checkout)。
使用命令:svn co http://{svn repository url} /destination
如:svn co http://svn.shiwan.com/svn/shiwan/branches/program/
然后系统会用当前的用户名登录,提示输入密码,如果第一次密码输入错误,会提示你输入用户名;
输入正确后,就可以检出文件了。
3、提交文件(commit)。
进入需要更新的目录,输入命令:
svn commit -m path-to-commit,其中path-to-commit可以为空,成功后会提示更新后的版本号。
4、更新文件(update)。
svn update,在要更新的目录运行这个命令就可以了。
5、查看日志(log)。
svn log path
6. 查看帮助
svn help