热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

eclipse中svn的各种状态图标详解

-已忽略版本控制的文件。可以通过Window→Preferences→Team→IgnoredResources.来忽略文件。Afileignoredbyversioncontro

- 已忽略版本控制的文件。可以通过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.

转载于:http://blog.sina.com.cn/s/blog_80c69e390101e7ph.html

eclipse中svn的各种状态图标详解


推荐阅读
  • Mac OS 升级到11.2.2 Eclipse打不开了,报错Failed to create the Java Virtual Machine
    本文介绍了在Mac OS升级到11.2.2版本后,使用Eclipse打开时出现报错Failed to create the Java Virtual Machine的问题,并提供了解决方法。 ... [详细]
  • 本文内容为asp.net微信公众平台开发的目录汇总,包括数据库设计、多层架构框架搭建和入口实现、微信消息封装及反射赋值、关注事件、用户记录、回复文本消息、图文消息、服务搭建(接入)、自定义菜单等。同时提供了示例代码和相关的后台管理功能。内容涵盖了多个方面,适合综合运用。 ... [详细]
  • 基于layUI的图片上传前预览功能的2种实现方式
    本文介绍了基于layUI的图片上传前预览功能的两种实现方式:一种是使用blob+FileReader,另一种是使用layUI自带的参数。通过选择文件后点击文件名,在页面中间弹窗内预览图片。其中,layUI自带的参数实现了图片预览功能。该功能依赖于layUI的上传模块,并使用了blob和FileReader来读取本地文件并获取图像的base64编码。点击文件名时会执行See()函数。摘要长度为169字。 ... [详细]
  • 在说Hibernate映射前,我们先来了解下对象关系映射ORM。ORM的实现思想就是将关系数据库中表的数据映射成对象,以对象的形式展现。这样开发人员就可以把对数据库的操作转化为对 ... [详细]
  • 本文介绍了在SpringBoot中集成thymeleaf前端模版的配置步骤,包括在application.properties配置文件中添加thymeleaf的配置信息,引入thymeleaf的jar包,以及创建PageController并添加index方法。 ... [详细]
  • 本文详细介绍了Linux中进程控制块PCBtask_struct结构体的结构和作用,包括进程状态、进程号、待处理信号、进程地址空间、调度标志、锁深度、基本时间片、调度策略以及内存管理信息等方面的内容。阅读本文可以更加深入地了解Linux进程管理的原理和机制。 ... [详细]
  • 1,关于死锁的理解死锁,我们可以简单的理解为是两个线程同时使用同一资源,两个线程又得不到相应的资源而造成永无相互等待的情况。 2,模拟死锁背景介绍:我们创建一个朋友 ... [详细]
  • 后台获取视图对应的字符串
    1.帮助类后台获取视图对应的字符串publicclassViewHelper{将View输出为字符串(注:不会执行对应的ac ... [详细]
  • 《数据结构》学习笔记3——串匹配算法性能评估
    本文主要讨论串匹配算法的性能评估,包括模式匹配、字符种类数量、算法复杂度等内容。通过借助C++中的头文件和库,可以实现对串的匹配操作。其中蛮力算法的复杂度为O(m*n),通过随机取出长度为m的子串作为模式P,在文本T中进行匹配,统计平均复杂度。对于成功和失败的匹配分别进行测试,分析其平均复杂度。详情请参考相关学习资源。 ... [详细]
  • 本文介绍了通过ABAP开发往外网发邮件的需求,并提供了配置和代码整理的资料。其中包括了配置SAP邮件服务器的步骤和ABAP写发送邮件代码的过程。通过RZ10配置参数和icm/server_port_1的设定,可以实现向Sap User和外部邮件发送邮件的功能。希望对需要的开发人员有帮助。摘要长度:184字。 ... [详细]
  • Java验证码——kaptcha的使用配置及样式
    本文介绍了如何使用kaptcha库来实现Java验证码的配置和样式设置,包括pom.xml的依赖配置和web.xml中servlet的配置。 ... [详细]
  • 在project.properties添加#Projecttarget.targetandroid-19android.library.reference.1..Sliding ... [详细]
  • 高质量SQL书写的30条建议
    本文提供了30条关于优化SQL的建议,包括避免使用select *,使用具体字段,以及使用limit 1等。这些建议是基于实际开发经验总结出来的,旨在帮助读者优化SQL查询。 ... [详细]
  • 猜字母游戏
    猜字母游戏猜字母游戏——设计数据结构猜字母游戏——设计程序结构猜字母游戏——实现字母生成方法猜字母游戏——实现字母检测方法猜字母游戏——实现主方法1猜字母游戏——设计数据结构1.1 ... [详细]
  • CentOS 7部署KVM虚拟化环境之一架构介绍
    本文介绍了CentOS 7部署KVM虚拟化环境的架构,详细解释了虚拟化技术的概念和原理,包括全虚拟化和半虚拟化。同时介绍了虚拟机的概念和虚拟化软件的作用。 ... [详细]
author-avatar
buxin81588_416
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有