BibTeX entries for the Personal Robotics Lab. This repository is used to populate the publications page on the lab website.
Publication PDFs are stored in Google Drive and automatically synced to the web server.
One way to add this repository to a paper repository is via the git submoudle command. Do the following in your paper repository:
$ git submodule add https://github.com/personalrobotics/pubs
$ git commit -am 'added PRL pubs submodule'
$ git push origin master
Now if you freshly clone this repository elsewhere, you'll find an empty pubs
directory. To populate it, do:
$ git submodule init
$ git submodule update
Git submodules are tricky, and not everyone likes them, but they are one way to stay in sync. One thing to keep in mind is that you need to be in the submodule subdirectory to run any git commands specific to that submodule.