`
Eri_Tian
  • 浏览: 9336 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论

SVN使用以及图标含义(学习笔记)

    博客分类:
  • Java
svn 
阅读更多

SVN使用基本流程:

 

a. 初次(initial)取出(checkout)repos,建立本地工作拷贝(WC WorkingCopy)。

b. 与repos同步(update),保证将要进行的编辑是最新版本。

c. 编辑源代码(包括创建、修改、删除)。

d. 与repos同步(update),提交之前先要同步到最新的版本,保证所有在自己之前的有关提交已经在本地有所知晓。

e. 解决冲突(resolve conflict)。

f. 提交(commit),一定要写上这次提交的内容的摘要,便于以后查阅。

g. 继续b。 每次开始新的编辑前的同步repos很重要,另外经常地update没有坏处,特别是多人项目中。如果每次提交(commit)前不进行更新(update)的到最新的版本的话,svn会提示当前的拷贝过期,需要更新。

在使用的过程中,时刻注意当前的工作拷贝(WC WorkingCopy)所对应的URL很重要,特别是当有了branches和tag等时候。使用svn info可以查看到这些信息。使用TortoiseSVN时,通过下面的操作查看这些信息:右键单击工作拷贝的根文件夹(不是上级文件夹),菜单中选择则属性(不是TortoiseSVN那个菜单),然后在出现的对话框中选择Subversion标签就可以看到了。

 

项目视图 The Package Explorer view

- 已忽略版本控制的文件。可以通过Window → Preferences → Team → Ignored Resources.来忽略文件。 A file ignored by version control. You can control what resources will be ignored by going to Window → Preferences → Team → Ignored Resources.

- 未纳入版本控制的文件,一般是新增,尚未提交的文件。 A file not under version control. These are typically new files that you have not committed to the repository yet.

- 本地重命名或移动到其它目录的文件。 A versioned file that needs to be added to the remote repository. These are typically files you have either renamed, or moved to a different directory.

- 本地删除的目录。 A deleted folder. These are folders that you have deleted locally without yet committing the changes to the repository. Note that files are usually removed from the view when they're deleted locally, so they are normally not seen with this icon.

- 没有任何改动的文件。 A file with no local changes.

- 有改动,但没有提交的文件。 A file with local, uncommitted changes.

- 处于锁定状态的文件。 A locked file.

- 有冲突没有解决,就更新或提交的文件。 A conflicted file. These are typically files that had a commit/update conflict that you marked to resolve later.

- 有目录树冲突的文件。一般在最近一次更新后,资源库上的文件被移动、删除或重命名。 A file that has a tree conflict. These are typically files that have local changes, but have since been moved, removed, or renamed in the repository since the last local copy update.

- 引用外部项目的文件,不能提交到本项目的资源库里。 A file that is external to the project. Linked external files cannot be committed to the repository.

- 有分支版本的文件。这些文件属于另外一个不同的工作目录而不是属于本地的父目录。 A file that has been switched. These are files which belongs to a different working copy than their local parent directory. 迁出 迁出Outgoing view

- 本地有更改的文件。 A file whose contents have been modified and will be committed to the repository.

- 本地新增的文件。 A file that will be newly added to the repository. This may coincide with a file removal in cases where a file is moved or renamed.

- 本地删除的文件。 A file that will be removed from the repository. This may coincide with a file addition in cases where a file is moved or renamed.

- 本地文件属性发生变化了的文件。 A file with property changes, in the Commit dialog. On the Synchronize tab, property changes are currently reflected as a normal file modification ().

迁入 Incoming view

- 需要更新的文件。 A file that has content changes committed to the repository that will be applied to the local copy.

- 需要迁入的新增文件。 A new file that will be added to the local copy from the repository. Like the outgoing file addition, this may be the result of a move or rename.

- 资源库中删除了的文件。 A file that will be removed from the local copy because it has been removed from the repository. Like the outgoing file removal, this may be the result of a move or rename.

冲突 Conflict view

- 资源库和本地同时有修改的文件。 A file that has been changed in both the local copy and repository independently, causing a need for conflict resolution. Fixing this condition involves opening up the conflict view or forcibly overwriting changes locally or remotely.

- 远程资源库上已经被重命名或移动、删除的文件。 A file that has a tree conflict. This can occur when there are new changes to a file on one end (either local or remote), and the file is moved, removed, or renamed on the other.

“与资源库同步”选项打开的界面上的一些按钮 Others :

Finally, the Synchronize with Repository option opens the Synchronize tab () with the following buttons:

- 同步选中的文件,下拉箭头切换不同的远程目录。 Synchronizes the local copy with the currently selected repository when clicked. Selecting from the drop-down allows switching between different remote code bases.

- 只显示需要迁入的文件。 Shows only incoming changes (remote → local).

- 只显示需要提交的文件。 Shows only outgoing changes (local → remote).

- 同时显示需要更新或提交文件。 Shows both incoming and outgoing changes (remote ↔ local).

- 只显示有冲突的文件。 Shows conflicting changes.

- 更新全部文件。 Updates all local resources with incoming changes after prompt.

- 提交全部文件。 Brings up the commit dialog to commit all outgoing changes.

 

svn图标含义来自:http://my.oschina.net/coda/blog/33678

 

分享到:
评论

相关推荐

    svn学习笔记

    ### SVN学习笔记 #### 版本控制的重要性及概念解析 版本控制在软件开发过程中扮演着极其重要的角色。尤其是在多人协作的环境下,版本控制系统能够有效帮助团队成员管理代码、文档和其他重要资源的不同版本,确保每...

    SVN中文教程 SVN简明教程 SVN学习笔记

    - 学习笔记通常包含个人理解和实践总结,可能涵盖一些实用技巧和常见问题解决方案。 通过以上内容,你将能够掌握SVN的基本操作和使用策略,更好地融入团队开发环境中。在实际工作中,结合具体的项目需求和团队协作...

    svn技术总结本人自己学习笔记.zip

    在“svn技术总结本人自己学习笔记.zip”这个压缩包中,我们可以期待找到关于SVN的基本概念、安装配置、日常操作、冲突解决以及高级特性的学习记录。 首先,SVN的核心概念包括仓库(Repository)、工作副本(Working...

    eclipse插件svn图标详细含义

    ### SVN 图标含义 #### 未纳入版本控制的文件 - **图标含义**:表示文件目前还没有被纳入版本控制系统。 - **应用场景**:新创建的文件或者手动排除版本控制的文件。 - **操作建议**:如果希望将这些文件纳入版本...

    svn 同步图标含义 全 所有图标含义

    在使用SVN时,有时可能会遇到SVN图标无法正常显示的问题。以下是一些常见的解决方案: 1. **Eclipse中的设置问题**: - 进入`Windows -> Preferences -> General -> Appearance -> Label Decorations`,勾选其中的...

    SVN学习笔记

    总体而言,本学习笔记涵盖了使用SVN进行版本控制管理的基本知识点,包括安装配置、基本操作、权限配置、备份与恢复等关键操作,以及一些使用过程中的技巧和问题解决方法。通过这些知识点的学习和应用,开发者可以...

    svn图标含义

    svn图标含义 SVN图标是Subversion版本控制系统中的一种图形化表示方式,用于表示文件或文件夹的状态。了解这些图标的含义对于开发者来说非常重要,可以快速地了解文件或文件夹的状态,从而提高开发效率。 灰色向右...

    软件开发SVN的使用方法和注意事项-Eclipse中SVN图标含义

    软件开发SVN的使用方法和注意事项-Eclipse中SVN图标含义 在软件开发中,SVN(Subversion)是一种非常流行的版本控制系统,它可以帮助开发者们更好地管理代码、协作开发和追踪变更。Eclipse 是一个流行的集成开发...

    eclipse插件svn图标详细含义(全)

    eclipse插件svn图标详细含义 eclipse插件svn图标是svn插件在eclipse中的图标表示法,用于表示svn版本控制系统中的文件状态。这些图标可以帮助开发者快速了解文件的版本控制状态,避免不必要的提交和更新操作。 1. ...

    SVN使用笔记笔记!

    ### 四、SVN图标集与工作流程 SVN客户端通常会在文件和目录上显示图标,以表明其在版本控制下的状态,例如,绿色勾表示已提交,红色感叹号表示未版本化,黄色感叹号表示冲突等。工作流程通常包括Checkout(获取代码...

    Svn相关学习资料以及视频

    本压缩包提供了丰富的 SVN 学习资源,包括安装教程、文档和视频,旨在帮助你快速掌握 SVN 的使用。 1. **SVN 安装**: - SVN 的安装过程通常分为两步:服务器端安装(如安装 SVN 服务器软件如 Apache 或 VisualSVN...

    SVN笔记学习

    以下是对"SVN笔记学习"内容的详细解读: 1. **Linux下SVN的搭建** - **安装SVN**: 在Linux系统中,通常通过包管理器来安装SVN,如在Ubuntu或Debian上使用`apt-get install subversion`,在CentOS或Fedora上使用`...

    SVN使用指南(含SVN服务器的安装与使用)

    SVN 使用指南(含 SVN 服务器的安装与使用) SVN(Subversion)是一种版本控制系统,能够帮助开发团队更好地管理代码仓库。下面是 SVN 使用指南,涵盖了 SVN 服务器的安装与使用、SVN 客户端的安装与使用等内容。 ...

    软件开发SVN的使用方法和注意事项-Eclipse中SVN图标含义实用.pdf

    软件开发SVN的使用方法和注意事项-Eclipse中SVN图标含义实用.pdf

    SVN使用教程.docx

    SVN 需要一定的学习成本,需要用户了解 SVN 的基本概念和使用方法。 2. 服务器维护 SVN 服务器需要维护和管理,避免服务器宕机或数据丢失。 SVN 是一个功能强大且灵活的版本控制系统,适合多种开发场景,可以帮助...

    git和svn学习入门教程

    在“SVN文档-中文简体.pdf”中,你可以学习如何安装和配置SVN,以及如何使用基本的版本控制操作,如添加、提交、更新和回滚。 在选择Git还是SVN时,通常会考虑项目规模、团队协作模式以及个人偏好。对于大型项目和...

    Linux SVN的安装使用笔记

    Linux SVN的安装使用笔记 .

    svn笔记资料

    通过本文的学习,我们不仅深入了解了SVN的基本概念和原理,还掌握了SVN的实际应用技巧。无论是对于个人开发者还是大型软件团队,熟练运用SVN都是非常必要的。希望本文能够帮助读者更好地理解SVN的核心价值,并将其...

Global site tag (gtag.js) - Google Analytics