Egit "*" character?

Hho,

I am using the egit plugin for eclipse.

What does this "*" symbol mean by the file icon?

The file is fixed, but with "git status" the file is marked with "changes to be made", but nothing happens with "git diff": /

Here is a screenshot:

http://imgur.com/hUyQN.png

Hi

+5
source share
1 answer

this means the file is set for commit, see the Icon decorations section of the eclipse wiki

  • staged - the resource has changes that have been added to the index. Please note that adding changes to the index is currently possible only in the commit dialog through the context menu of the resource.
  • - - , , .

, git , git add (-p) <file>

+10

All Articles