例如“*”象征?
你好,
我正在使用 eclipse 的 egit 插件。
文件图标上的这个符号“*”是什么意思?
文件已提交,但使用“git status”,文件标记为“要提交的更改”,但使用“git diff”什么也没有发生:/
这是一个屏幕截图:
问候
Hiho,
I'm using the egit plugin for eclipse.
What does this Symbol "*" mean over the icon of a file?
The file is committed but with "git status" the file is marked with "changes to be commited" but with "git diff" happens nothing:/
Here's a screenshot:
greetings
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这意味着文件已准备好提交,请参阅 eclipse wiki 中的图标装饰部分
也就是说,已经被 git 跟踪的文件以及对它们的更改是通过 git add (-p)暂存的
it means the file is staged for commit, see the section Icon decorations in the eclipse wiki
that is, files which are already tracked by git and changes to them were staged with
git add (-p) <file>