例如“*”象征?

发布于 2024-09-18 12:30:13 字数 254 浏览 7 评论 0原文

你好,

我正在使用 eclipse 的 egit 插件。

文件图标上的这个符号“*”是什么意思?

文件已提交,但使用“git status”,文件标记为“要提交的更改”,但使用“git diff”什么也没有发生:/

这是一个屏幕截图:

http://imgur.com/hUyQN.png

问候

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:

http://imgur.com/hUyQN.png

greetings

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不气馁 2024-09-25 12:30:13

这意味着文件已准备好提交,请参阅 eclipse wiki 中的图标装饰部分

  • 已暂存 - 资源发生更改并已添加到索引中。请注意,目前只能通过资源的上下文菜单在提交对话框中添加对索引的更改。
  • 部分暂存 - 资源已添加到索引中的更改以及工作树中既未到达索引也未提交到存储库的其他更改。

也就是说,已经被 git 跟踪的文件以及对它们的更改是通过 git add (-p)暂存的

it means the file is staged for commit, see the section Icon decorations in the eclipse wiki

  • staged - The resource has changes which have been added to the index. Note that adding changes to the index is currently possible only in the commit dialog via the context menu of a resource.
  • partially-staged - The resource has changes which are added to the index and additional changes in the working tree that neither reached the index nor have been committed to the repository.

that is, files which are already tracked by git and changes to them were staged with git add (-p) <file>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文