SOFTELメモ Developer's blog

会社概要 ブログ 調査依頼 採用情報 ...
てるてる動画

【eclipse】Subclipseのアイコン一覧

eclipseのSVNクライアントプラグインのSubclipseのアイコン一覧。

eclipse-subclipse-ss


subclipse-icon-01
Ignored File – A file ignored by version control. You can control what resources will be ignored by going to Window → Preferences → Team → Ignored Resources.
管理対象外のファイル。無視されたファイル。

subclipse-icon-02
Unversioned File – A file not under version control. These are typically new files that you have not committed to the repository yet.
バージョン管理されていないファイル。たいていはまだコミットしていない新しいファイルが該当。

subclipse-icon-03
New File – 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.
新しいファイル。バージョン管理に追加されているが、リポジトリに追加される必要のあるファイル。たいていは名前を変更したり別のディレクトリに移動させたファイルが該当。

subclipse-icon-04
Deleted Folder – 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.
削除されたフォルダ。ローカルで削除したけどまだコミットしていないフォルダ。ローカルで削除するとたいてい非表示になるので、普段は見えないアイコンかも。

subclipse-icon-05
Synchronized File – A file with no local changes.
同期しているファイル。作業コピー側では変更されていないファイル。

subclipse-icon-06
Local Changes – A file with local, uncommitted changes.
作業コピー側で変更あり。まだ変更がコミットされていないファイル。

subclipse-icon-07
Locked File – A locked file.
ロックされたファイル。

subclipse-icon-08
Needs Lock – 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.
ロックが必要なファイル。

subclipse-icon-09
Conflicted File – A conflicted file. These are typically files that had a commit/update conflict that you marked to resolve later.
競合しているファイル。

subclipse-icon-10
Tree Conflicted File – 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.
ツリーの競合が発生しているファイル。たいていは作業コピーで変更が発生し、リポジトリでは移動、削除、名前変更が発生している場合。

subclipse-icon-11
External File – A file that is external to the project. Linked external files cannot be committed to the repository.
外部参照ファイル。プロジェクト外のファイルでコミットはできない。

subclipse-icon-12
Switched File – 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

subclipse-icon-13
Commit Changes – A file whose contents have been modified and will be committed to the repository.
リソース変更のコミット

subclipse-icon-14
Commit Addition – 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..
リソース追加のコミット

subclipse-icon-15
Commit Removal – 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.
リソース削除のコミット

subclipse-icon-16
Property Change – A file with property changes, in the Commit dialog. On the Synchronize tab, property changes are currently reflected as a normal file modification (Commit Changes).
リソースのプロパティの変更

Incoming

subclipse-icon-17
Remote Changes – A file that has content changes committed to the repository that will be applied to the local copy.
リモート側での変更

subclipse-icon-18
Pull Addition – 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.
リモート側での追加

subclipse-icon-19
Pull Removal – 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

subclipse-icon-20
Conflicting Versions – 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.
競合

subclipse-icon-21
Synchronization Tree Conflict – 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.
ツリーの競合

参考

http://stackoverflow.com/questions/3917925/what-do-the-arrow-icons-in-subclipse-mean

関連するメモ

コメント