




已阅读5页,还剩2页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
svn图标的详细含义(全)原则: 先更新, 后提交问号Unversioned, 未在版本控制中黄色的小瓶子项目的版本和服务器里面项目的版本一致灰色的勾锁定黑星本地修改未提交的黑右箭头本地修改过蓝左箭头服务器端修改过黑右加箭头本地比服务器多出的蓝右加箭头服务器端比本地多出的黑右减箭头本地已删除, 服务器未删除蓝左减箭头服务器已删除, 本地未删除红双向箭头服务器中修改过, 本地也修改过(出现冲突)的零个未更新9个未提交零个未提交Tortoise 项目视图 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 theyre 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.What do the arrow icons in Subclipse mean?When working with the Subversion repository, remote changes (those on the repository) are incoming changes (remote local), while local changes are outgoing changes (local remote).In views that compare the local and remote copies, incoming changes are denoted with a blue, left-facing arrow, while outgoing changes are denoted with a gray, right-facing arrow. These arrows may be decorated to indicate more specific operations.The Package Explorer view, on the other hand, indicates a files status with a different set of icons representing its local state. These icons are the ones most commonly seen, so lets start with them:- 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 theyre 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 file that needs a lock to be edited. These are typically files that cannot easily be merged (i.e. binary files), but may have many editors. A file needs a lock when its svn:needs-lock property is set, and Subversion will attempt to make these files read-only in the file system to enforce proper lock negotation.- 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.In a synchronization view (e.g. via Synchronize with Repository or Commit), as previously described, there are icons which indicate which direction a change is occurring in as well as additional information about that change. These are described below:Outgoing- 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- 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- 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
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年山东省平邑县英语八年级第二学期期中达标检测试题含答案
- 网络信息检索试题及答案
- 听胎心试题及答案
- 2025年医疗机构药材订购协议示例
- 2025年双方策划共同出资购买房产协议书
- 2025年会计师事务所策划业务联盟协议(草案)
- 2025年版权授权代理协议模板
- 数字化转型对企业风险管理的影响
- 2025年心血管科医院合作策划协议书
- 改革开放新形势下国企国际化发展策略
- 三菱D700变频器说明书
- 高校实验室安全教育
- 手术患者评估制度理论考核试题
- 2024年广东省中考语文试题含答案
- DB32∕T 2127-2012 安防服务企业报警服务规范
- 高速铁路客运服务基础知识单选题100道及答案
- 金蝶财务软件旗舰版或K3系统存货核算的实际成本法操作手册
- 园林绿化养护管理工程技术标
- RFID试题库及参考答案
- 2013清单工程量计算规则
- 中国文化概观-终结性考核-国开(SC)-参考资料
评论
0/150
提交评论