Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What do these arrows mean in Eclipse Kepler? [duplicate]

Tags:

java

eclipse

I've got these arrows on a number of files in a Dynamic Web project in Eclipse Kepler. What do they mean?

enter image description here

There are also on a number of files in my WebContent directory:

enter image description here

like image 953
crmepham Avatar asked Oct 13 '14 15:10

crmepham


People also ask

What is yellow arrow in eclipse?

The yellow arrows in the column where breakpoint indicators also live point to lines containing item(s) matching a textual search and are listed in the search window.

What does the up arrow mean in Eclipse Git?

This means your local branch is two commits ahead of the remote one. Git is a distributed version control system. The git commit command only introduces the changes to your local repository.

How to Run Java file on Eclipse?

Step 1: Open Eclipse and click File > New > Java Project. Step 2: Provide the Project Name and click on the Finish button. Step 3: In the Package Explorer (left-hand side of the window) select the project which you have created. Step 4: Right-click on the src folder, select New > Class from the submenu.


1 Answers

If you are using a source control system (such as Git, SVN or CVS) the '>' means you have changed the file since it was last checked in.

Most source control systems let you configure this character and other label options. For example with SVN it is in Preferences > Team > SVN > Label Decorations.

Newer versions of Eclipse call the preference "Version Control (Team)" rather than just "Team".

like image 90
greg-449 Avatar answered Sep 20 '22 18:09

greg-449