init git: init git annex: Add S3 Remote named public-s3 Add file to git annex copy current directory to public-s3 remote remove local copy—will only remove if already in remote—nothing
lost Commit Add Rsync
as unencrypted remote Add file to nas Find a file: Adding a file to http://tyler.zoneSetup New repo
git init
git annex init local
git annex initremote public-s3 type=S3 encryption=none bucket=tyler.zone chunk=0
git annex add [big-file]
git annex copy --to public-s3
git annex drop [file]
git -a -m 'initial commit'
Setup NFS as remote using Rsync over ssh
git annex initremote nas type=rsync rsyncurl=nfs.blazeyandltyler.com:/volume1/homes/tyler/PicturesAnnex encryption=none
git annex copy --to=nas
Pull down photos
eval (~/.amazonrc)
git annex enableremote public-s3
git annex get [whatever]
Make available to the public (after public s3 setup):
git annex addurl --file [filename] "http://tyler.zone/$(git annex lookupkey [filename])"
List remotes and remote info
Show remotes
git annex enableremote
Show remote info
git annex info [remote-name]
git annex info tylercipriani-raw
Finding info about files
git annex whereis [filename]
eval $(~/.amazonrc)
git annex copy --to=photo-site [file]
git annex addurl --file [file] "http://tyler.zone/$(git annex lookupkey [filename])"
Posted