文件上的棕色星号图标在 Eclipse 中意味着什么?
我正在使用 Eclipse 的 git 插件。我的一些文件标有棕色星号。这是什么意思?在哪里可以找到有关 Eclipse 中其余 git 图标含义的文档?
I am using the git plugin for Eclipse. Some of my files are marked with a brown asterisk. What does it mean? Where can I find documentation for what the rest of the git icons mean in Eclipse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
Eclipse 图标列表:
1- JDT 图标
2- 主要图标
3- Eclipse 用户界面指南
4- GIT 标签装饰
Eclipse icons list:
1- JDT icons
2- main icons
3- Eclipse user interface guideline
4- GIT Label Decorations
这意味着您已更改工作区中文件中的某些内容,但未将更改推送到主存储库。
This means that you've changed something in a file in your workspace but not pushed your changes to the master repository.
这个问题实际上与GIT有关,所以如果不起作用,请尝试其他方法:备份您的代码,然后再次克隆项目并开始处理它。
This issue is actually related to GIT, so try other ways if nothing works: backup your code and just clone the project once again and start working on it.
此页面应该可以让您很好地了解 Eclipse 中 GIT 的图标含义
。摘要:
This page should give you a good rundown of what the icons mean for GIT in eclipse
A quoted summary:
我不熟悉 git,但是当在 Eclipse 中使用 svn 时,棕色方块上的白色星星意味着自上次更新以来您已对文件进行了更改。另一方面,金色圆柱体意味着您尚未进行更改,因此本地文件与存储库版本相同。所以它的意思一定和git中的意思大致相同。
I'm not familiar with git, but when using svn with Eclipse, the white star on the brown square means you have made changes to the file since the last time you updated it. The gold cylinder, on the other hand, means you have not made changes so the local file is identical to the repository version. So it must mean something that is roughly equivalent to that in git.