Reputation: 93
I find there is ">" before my .java file in package explorer.
Anyone know what that means?
Upvotes: 2
Views: 1153
Reputation: 56
The ">" symbol before files in your Project Explorer view will flag the file as having differences from the source control host you are connected to. You can drill down through a package until you find the file that differs from the current source control version. Each container that nests an uncommitted item will have the ">".
In Eclipse, you are able to see what changes differ between the local version and the VCS host by right clicking the file > Compare With > Latest From HEAD.
Upvotes: 2
Reputation: 111142
If you are using a source control system such as SVN this normally means you have 'outgoing' modifications pending on the file. In other words you have changed the file and not yet checked it in.
Upvotes: 4