No, right click on the project then Maven->Update Project, alt-F5 is the shortcut.
– Essex BoyFeb 15 '19 at 12:12
It will get updated inside the eclipse only right? but when we try checking the git local repo using "git status" it is showing as Modified if we do change the code in the project
– Asik Rahman.MFeb 15 '19 at 12:20
any changes made in Eclipse will not be transferred to a repository until they are 'pushed' from the command line, or synchronized from eclipse. Think of eclipse as an editor of the code.
– Essex BoyFeb 15 '19 at 12:38
1
This https://stackoverflow.com/questions/42554213/what-exactly-does-maven-update-project-do-in-eclipse gives a brief explanation about maven update in eclipse and No, maven update won't push the code into git! until you commit and push
– CloverFeb 15 '19 at 13:07