Re: how to update from git and merge with local modifications
Posted by
matlabbe on
URL: http://official-rtab-map-forum.206.s1.nabble.com/how-to-update-from-git-and-merge-with-local-modifications-tp157p158.html
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.