Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Arrow up and number on Eclipse meaning

I'm working on a project using Eclipse with Maven and Bitbucket. Right now I can't do any commit, I mean even if I press the commit button, I can't see it on Bitbucket. Furthermore, next to my project's name I got a symbol with an arrow up and the number 2 next to it.

What does it means? What should I do?

like image 339
user3631862 Avatar asked May 20 '14 21:05

user3631862


People also ask

How do you find the meaning of the arrow symbols?

If you are intrested in the meaning of any arrow, you should mouse over a symbol to see its name. Also you can move to the page dedicated to that symbol. Arrows can indicate force directions in Physics, they can be used to point directions in public places or as Maths symbols.

How to enable/disable line numbers using short cut keys in Eclipse?

Using short cut keys in eclipse, We can enable/disable line numbers. To display the line numbers. Click Ctrl and F10 key, - it opens popup context window Select keyboard N key - It selects Show Line Numbers options and displays the line numbers

How to add lines to the Eclipse code editor?

It is another simple approach to add lines to the eclipse code editor. Open any source code file. For example, Open java class file Class file is displayed in the Eclipse Code editor. Using short cut keys in eclipse, We can enable/disable line numbers. To display the line numbers.

What do the numbers on arrow shafts mean?

Thus the larger the first two numbers, the thicker the arrow shaft, albeit by possibly a very small amount. The second two of the four digits refer to the thickness of the wall of the arrow shaft in 1/1,000 inch. Looking an an arrow marked "2413," this gives the arrow an outer wall thickness of 13/1,000 inch, or .013 inches.


1 Answers

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. To make them appear in the remote, you have to use git push after committing your changes.

Alternatively, you can use Eclipse as a GUI to perform the same steps. In the context menu that pops up when you right-click the project, there should be a Team option. Clicking it brings up another context menu, which should have a Push option.

like image 104
toniedzwiedz Avatar answered Nov 02 '22 08:11

toniedzwiedz