Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jarrodmillman/scientific-review
See http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3328792/
https://github.com/jarrodmillman/scientific-review
Last synced: 22 days ago
JSON representation
See http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3328792/
- Host: GitHub
- URL: https://github.com/jarrodmillman/scientific-review
- Owner: jarrodmillman
- Created: 2010-12-21T15:06:33.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-05-13T04:27:42.000Z (over 13 years ago)
- Last Synced: 2024-10-17T08:35:32.609Z (2 months ago)
- Homepage:
- Size: 961 KB
- Stars: 6
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Getting the repo::
git clone [email protected]:jarrodmillman/scientific-review.git
Commiting changes::
git commit -m 'commit message'
Pushing changes back up::
git push origin master
Creating a simple PDF from the article::
rst2pdf article.rst
Notes from Jarrod's 5/9/2011 email:
Once you've created your own fork, here are the main git commands you will need:
### create your working repo
$ git clone [email protected]:binarybottle/scientific-review.git
$ cd scientific-review### add satra and my github repos
$ git remote add satra [email protected]:satra/scientific-review.git
$ git remote add jarrod [email protected]:jarrodmillman/scientific-review.git### get my newest revision and merge it with your master branch
$ git fetch jarrod
$ git merge jarrod/master### get satra's newest revision and merge it with your master branch
$ git fetch satra
$ git merge satra/master### commit your changes and push to your github repo
$ git commit
$ git pushArno (binarybottle), Brian (stnava), and Satra (satra) should have
permission to push to my github repo as well:
$ git push jarrod