how to update from git and merge with local modifications

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

how to update from git and merge with local modifications

m.omar82
Dear friends
how to update from git and merge with local modifications, I am using Eclipse
Thanks
Reply | Threaded
Open this post in threaded view
|

Re: how to update from git and merge with local modifications

matlabbe
Administrator
Assuming that you have cloned the Github repository:
$ git clone https://github.com/introlab/rtabmap.git
To update to latest changes:
$ cd rtabmap
$ git pull origin master
In Eclipse (you may need to install Git for Eclipse): Right-click on the project -> Team -> Pull. You can also do "Synchronize Workspace" and see your changes and those in the upstream repository.