Reputation: 643
I'm a little new to Subclipse and just did an update on the whole project. Subclipse nicely produced the following output in the Eclipse Console window. (Never got anything like this with Subversive.) so I can guess that the A in the first column (and highlighted in yellow) indicates the file was an addition to the repository since my last update. And that the U indicates the file has been updated with no conflicts. But what does the G mean? I'm guessing it must be something important cuz it's red.
I found the nice list of icons on StackOverflow here but this is not icons. I'm asking about the output from the Update command.
Upvotes: 0
Views: 109
Reputation: 32914
Those are standard svn update command statuses. G
means automatically merged. See this answer for more details.
Upvotes: 2