问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

centos下有什么图形化的svnclient

发布网友 发布时间:2022-04-24 04:49

我来回答

1个回答

热心网友 时间:2023-10-29 15:24

TortoiseSVN:
TortoiseSVN 是 Subversion 版本控制系统的一个免费开源客户端,可以超越时间的管理文件和目录。文件保存在*版本库,除了能记住文件和目录的每次修改以外,版本库非常像普通的文件服务器。你可以将文件恢复到过去的版本,并且可以通过检查历史知道数据做了哪些修改,谁做的修改。这就是为什么许多人将 Subversion 和版本控制系统看作一种“时间机器”。

环境说明:
系统版本:CentOS 6.5,内核(uname -r):2.6.32-431.el6.x86_64
安装命令:
yum install -y subversion

SVN客户端命令:
查看svn命令帮助:
svn help

查看子命令帮助:
svn checkout --help

[plain] view plaincopy
checkout (co): Check out a working copy from a repository.
usage: checkout URL[@REV]... [PATH]

If specified, REV determines in which revision the URL is first
looked up.

If PATH is omitted, the basename of the URL will be used as
the destination. If multiple URLs are given each will be checked
out into a sub-directory of PATH, with the name of the sub-directory
being the basename of the URL.

If --force is used, unversioned obstructing paths in the working
copy destination do not automatically cause the check out to fail.
If the obstructing path is the same type (file or directory) as the
corresponding path in the repository it becomes versioned but its
contents are left 'as-is' in the working copy. This means that an
obstructing directory's unversioned children may also obstruct and
become versioned. For files, any content differences between the
obstruction and the repository are treated like a local modification
to the working copy. All properties from the repository are applied
to the obstructing path.

See also 'svn help update' for a list of possible characters
reporting the action taken.

Valid options:
-r [--revision] ARG : ARG (some commands also take ARG1:ARG2 range)
A revision argument can be one of:
NUMBER revision number
'{' DATE '}' revision at start of the date
'HEAD' latest in repository
'BASE' base rev of item's working copy
'COMMITTED' last commit at or before BASE
'PREV' revision just before COMMITTED
-q [--quiet] : print nothing, or only summary information
-N [--non-recursive] : obsolete; try --depth=files or --depth=immediates
--depth ARG : limit operation by depth ARG ('empty', 'files',
'immediates', or 'infinity')
--force : force operation to run
--ignore-externals : ignore externals definitions

Global options:
--username ARG : specify a username ARG
--password ARG : specify a password ARG
--no-auth-cache : do not cache authentication tokens
--non-interactive : do no interactive prompting
--trust-server-cert : accept unknown SSL server certificates without
prompting (but only with '--non-interactive')
--config-dir ARG : read user configuration files from directory ARG
--config-option ARG : set user configuration option in the format:
FILE:SECTION:OPTION=[VALUE]
For example:
servers:global:http-library=serf
svn list --help

[plain] view plaincopy
list (ls): List directory entries in the repository.
usage: list [TARGET[@REV]...]

List each TARGET file and the contents of each TARGET directory as
they exist in the repository. If TARGET is a working copy path, the
corresponding repository URL will be used. If specified, REV determines
in which revision the target is first looked up.

The default TARGET is '.', meaning the repository URL of the current
working directory.

With --verbose, the following fields will be shown for each item:

Revision number of the last commit
Author of the last commit
If locked, the letter 'O'. (Use 'svn info URL' to see details)
Size (in bytes)
Date and time of the last commit

Valid options:
-r [--revision] ARG : ARG (some commands also take ARG1:ARG2 range)
A revision argument can be one of:
NUMBER revision number
'{' DATE '}' revision at start of the date
'HEAD' latest in repository
'BASE' base rev of item's working copy
'COMMITTED' last commit at or before BASE
'PREV' revision just before COMMITTED
-v [--verbose] : print extra information
-R [--recursive] : descend recursively, same as --depth=infinity
--depth ARG : limit operation by depth ARG ('empty', 'files',
'immediates', or 'infinity')
--incremental : give output suitable for concatenation
--xml : output in XML

Global options:
--username ARG : specify a username ARG
--password ARG : specify a password ARG
--no-auth-cache : do not cache authentication tokens
--non-interactive : do no interactive prompting
--trust-server-cert : accept unknown SSL server certificates without
prompting (but only with '--non-interactive')
--config-dir ARG : read user configuration files from directory ARG
--config-option ARG : set user configuration option in the format:
FILE:SECTION:OPTION=[VALUE]
For example:
servers:global:http-library=serf
svn list使用示例:

svn list svn://192.168.231.1/SVNHome
遇到连接超时的错误:

查看连接的IP上是否已经启动SVN服务,检查防火墙端口开放状态。
解决连通问题之后,会提示输入“root”用户的密码,如下图:

这里使用其它用户访问,直接回车就可以了,然后提示输入用户名,输入完成回车,
然后提示输入密码,输入完成回车,如果输入正确就可以看到类似的信息了。
svn checkout使用示例:
先创建一个目录,例如:mkdir test
检出到test目录下
svn checkout svn://192.168.231.1/SVNHome ./test

由于之前已经选择保存密码了,所以这里不再需要验证,输出如下图:

Checked out revision 10.检出成功,去test目录下看看吧。

更新版本库:
切换目录到之前检出的文件目录,然后执行命令:svn update
如果之前没有选择保存密码,则会提示输入检出时使用的用户的密码!
如果需要使用其它用户,则直接按回车,这样就会提示你输入用户名,
输入用户名之后按回车,会提示输入密码,输入正确并且用户有权限的话,就会开始更新了。

热心网友 时间:2023-10-29 15:24

TortoiseSVN:
TortoiseSVN 是 Subversion 版本控制系统的一个免费开源客户端,可以超越时间的管理文件和目录。文件保存在*版本库,除了能记住文件和目录的每次修改以外,版本库非常像普通的文件服务器。你可以将文件恢复到过去的版本,并且可以通过检查历史知道数据做了哪些修改,谁做的修改。这就是为什么许多人将 Subversion 和版本控制系统看作一种“时间机器”。

环境说明:
系统版本:CentOS 6.5,内核(uname -r):2.6.32-431.el6.x86_64
安装命令:
yum install -y subversion

SVN客户端命令:
查看svn命令帮助:
svn help

查看子命令帮助:
svn checkout --help

[plain] view plaincopy
checkout (co): Check out a working copy from a repository.
usage: checkout URL[@REV]... [PATH]

If specified, REV determines in which revision the URL is first
looked up.

If PATH is omitted, the basename of the URL will be used as
the destination. If multiple URLs are given each will be checked
out into a sub-directory of PATH, with the name of the sub-directory
being the basename of the URL.

If --force is used, unversioned obstructing paths in the working
copy destination do not automatically cause the check out to fail.
If the obstructing path is the same type (file or directory) as the
corresponding path in the repository it becomes versioned but its
contents are left 'as-is' in the working copy. This means that an
obstructing directory's unversioned children may also obstruct and
become versioned. For files, any content differences between the
obstruction and the repository are treated like a local modification
to the working copy. All properties from the repository are applied
to the obstructing path.

See also 'svn help update' for a list of possible characters
reporting the action taken.

Valid options:
-r [--revision] ARG : ARG (some commands also take ARG1:ARG2 range)
A revision argument can be one of:
NUMBER revision number
'{' DATE '}' revision at start of the date
'HEAD' latest in repository
'BASE' base rev of item's working copy
'COMMITTED' last commit at or before BASE
'PREV' revision just before COMMITTED
-q [--quiet] : print nothing, or only summary information
-N [--non-recursive] : obsolete; try --depth=files or --depth=immediates
--depth ARG : limit operation by depth ARG ('empty', 'files',
'immediates', or 'infinity')
--force : force operation to run
--ignore-externals : ignore externals definitions

Global options:
--username ARG : specify a username ARG
--password ARG : specify a password ARG
--no-auth-cache : do not cache authentication tokens
--non-interactive : do no interactive prompting
--trust-server-cert : accept unknown SSL server certificates without
prompting (but only with '--non-interactive')
--config-dir ARG : read user configuration files from directory ARG
--config-option ARG : set user configuration option in the format:
FILE:SECTION:OPTION=[VALUE]
For example:
servers:global:http-library=serf
svn list --help

[plain] view plaincopy
list (ls): List directory entries in the repository.
usage: list [TARGET[@REV]...]

List each TARGET file and the contents of each TARGET directory as
they exist in the repository. If TARGET is a working copy path, the
corresponding repository URL will be used. If specified, REV determines
in which revision the target is first looked up.

The default TARGET is '.', meaning the repository URL of the current
working directory.

With --verbose, the following fields will be shown for each item:

Revision number of the last commit
Author of the last commit
If locked, the letter 'O'. (Use 'svn info URL' to see details)
Size (in bytes)
Date and time of the last commit

Valid options:
-r [--revision] ARG : ARG (some commands also take ARG1:ARG2 range)
A revision argument can be one of:
NUMBER revision number
'{' DATE '}' revision at start of the date
'HEAD' latest in repository
'BASE' base rev of item's working copy
'COMMITTED' last commit at or before BASE
'PREV' revision just before COMMITTED
-v [--verbose] : print extra information
-R [--recursive] : descend recursively, same as --depth=infinity
--depth ARG : limit operation by depth ARG ('empty', 'files',
'immediates', or 'infinity')
--incremental : give output suitable for concatenation
--xml : output in XML

Global options:
--username ARG : specify a username ARG
--password ARG : specify a password ARG
--no-auth-cache : do not cache authentication tokens
--non-interactive : do no interactive prompting
--trust-server-cert : accept unknown SSL server certificates without
prompting (but only with '--non-interactive')
--config-dir ARG : read user configuration files from directory ARG
--config-option ARG : set user configuration option in the format:
FILE:SECTION:OPTION=[VALUE]
For example:
servers:global:http-library=serf
svn list使用示例:

svn list svn://192.168.231.1/SVNHome
遇到连接超时的错误:

查看连接的IP上是否已经启动SVN服务,检查防火墙端口开放状态。
解决连通问题之后,会提示输入“root”用户的密码,如下图:

这里使用其它用户访问,直接回车就可以了,然后提示输入用户名,输入完成回车,
然后提示输入密码,输入完成回车,如果输入正确就可以看到类似的信息了。
svn checkout使用示例:
先创建一个目录,例如:mkdir test
检出到test目录下
svn checkout svn://192.168.231.1/SVNHome ./test

由于之前已经选择保存密码了,所以这里不再需要验证,输出如下图:

Checked out revision 10.检出成功,去test目录下看看吧。

更新版本库:
切换目录到之前检出的文件目录,然后执行命令:svn update
如果之前没有选择保存密码,则会提示输入检出时使用的用户的密码!
如果需要使用其它用户,则直接按回车,这样就会提示你输入用户名,
输入用户名之后按回车,会提示输入密码,输入正确并且用户有权限的话,就会开始更新了。
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
不想让老婆看到我电脑里的一些东西怎么办? 桥好路由器停电后在来电老是获取lp 勒索病毒加密的文件如何恢复? TPU贴合膜多少钱 华为手机如何将输入法改为简体 肉丝炒金针菇做法 仓储冷链信息怎么申报 什么是药品冷链物流 浙江食品冷链运输多少钱 生物冷链具备什么资质 Excel2010批注中文字插入的方法 centos7 svn服务器搭建 内容存在什么地方 centos+httpd+svn权限设置问题 Excel2010简体繁体转换步骤图文教程 centos7安装了svn后怎么上传代码 centos7 svn firewalld 要开放服务吗 CentOS7设置SVN自启动,提交报错,无权限.手动kill掉后重启,成功._百度知... 用centos6.5搭建了svn服务器 无登陆认证对话框 提交失败 怎样管理centos svn 仓库 centos7.2怎么安装svn 如何在阿里云服务器centos 7上配置svn服务器 centos6.8怎么安装svn centos 7怎样安装svn服务器 centos 搭建了svn服务器,怎么查看地址 求16位世嘉 经典游戏卡 对打的 荣耀V10手机屏幕亮度自动变化? 世嘉机有什么好玩双人的游戏吗?介绍几个??? 给我推荐点世嘉MD的RPG游戏 任天堂,世嘉,EA都出过什么游戏啊? SEGA(世嘉)出的PSP游戏有那些? Excel2010制作有凹凸感的表格的方法(附动画教程) Excel2010文档如何加密?Excel2010文档加密教程 Excel教程:excel2010怎么给文档加密 Excel2010简体繁体转换的方法 写出Excel2010图表分析步骤? 启动中文excel 2010的正确操作方法是 Microsoft Office Excel2010全面精通视频培训教程的内容简介 做好ppt,想换成单位自制的模块怎么办 如何将已有的PPT做成可编辑的母板? 微距摄影中的技巧和重点分别有哪些? 微距摄影怎么拍,有什么技巧吗? 如何拍摄清晰锐利的微距照片? 免费全本小说书城的语音是哪款软件? txt听书苍南有两列怎么样 用佳能单反拍摄微距的技巧? 单反怎么拍微距 怎么样才能洗掉很久以前的血迹 免费的有声小说软件哪个好 微距应该怎么拍 有哪些比较全的免费小说app?