https://github.com/srijanshetty/papers
git-annex repo of papers
https://github.com/srijanshetty/papers
Last synced: about 2 months ago
JSON representation
git-annex repo of papers
- Host: GitHub
- URL: https://github.com/srijanshetty/papers
- Owner: srijanshetty
- Created: 2015-01-28T09:07:32.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-28T09:19:43.000Z (almost 10 years ago)
- Last Synced: 2025-01-17T19:51:32.020Z (3 months ago)
- Size: 1.22 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
papers
======A git-annex repository of academic papers.
Using
-----First install `git` and `git-annex`. Then:
```sh
git clone git://github.com/srijanshetty/papers
git-annex init local
git-annex get .
```If you want just some particular paper:
```
git-annex get distributed-systems/2004-MapReduce.pdf
```Please open an issue if you cannot download any paper so that I can mirror them.
How I created this?
-------------------```sh
cd papers
git init
git remote add origin [email protected]/srijanshetty/papers
git-annex init laptop
git-annex addurl --file distributed-systems/PNUTS.pdf http://css.csail.mit.edu/6.824/2014/papers/cooper-pnuts.pdf
git-annex add .
git commit -m "papers"
git config remote.origin.annex-ignore true # Because GitHub doesn't store annexed content.
git push origin master git-annex
```Who's Idea
----------Blatantly copied the idea from @rejuveysh