2010-10-21 20:30:16 +00:00
|
|
|
A walkthrough of the basic features of git-annex.
|
|
|
|
|
|
|
|
[[!toc]]
|
|
|
|
|
2010-10-20 00:07:50 +00:00
|
|
|
## creating a repository
|
|
|
|
|
|
|
|
This is very straightforward. Just tell it a description of the repository.
|
|
|
|
|
|
|
|
# mkdir ~/annex
|
|
|
|
# cd ~/annex
|
|
|
|
# git init
|
|
|
|
# git annex init "my laptop"
|
|
|
|
|
|
|
|
## adding a remote
|
|
|
|
|
2010-10-22 19:38:31 +00:00
|
|
|
Like any other git repository, git-annex repositories have remotes.
|
|
|
|
Let's start by adding a USB drive as a remote.
|
2010-10-20 00:07:50 +00:00
|
|
|
|
|
|
|
# sudo mount /media/usb
|
|
|
|
# cd /media/usb
|
|
|
|
# git clone ~/annex
|
|
|
|
# cd annex
|
|
|
|
# git annex init "portable USB drive"
|
2010-10-27 18:48:59 +00:00
|
|
|
# git remote add laptop ~/annex
|
2010-10-20 00:07:50 +00:00
|
|
|
# cd ~/annex
|
|
|
|
# git remote add usbdrive /media/usb
|
|
|
|
|
2010-10-22 19:38:31 +00:00
|
|
|
This is all standard ad-hoc distributed git repository setup.
|
|
|
|
The only git-annex specific part is telling it the name
|
2010-10-20 00:07:50 +00:00
|
|
|
of the new repository created on the USB drive.
|
|
|
|
|
2010-10-27 18:48:59 +00:00
|
|
|
Notice that both repos are set up as remotes of one another. This lets
|
2010-10-20 00:10:45 +00:00
|
|
|
either get annexed files from the other. You'll want to do that even
|
2010-10-27 18:48:59 +00:00
|
|
|
if you are using git in a more centralized fashion.
|
2010-10-20 00:07:50 +00:00
|
|
|
|
|
|
|
## adding files
|
|
|
|
|
|
|
|
# cd ~/annex
|
|
|
|
# cp /tmp/big_file .
|
|
|
|
# cp /tmp/debian.iso .
|
|
|
|
# git annex add .
|
|
|
|
add big_file ok
|
|
|
|
add debian.iso ok
|
|
|
|
# git commit -a -m added
|
|
|
|
|
2010-10-27 18:33:44 +00:00
|
|
|
When you add a file to the annex and commit it, only a symlink to
|
|
|
|
the annexed content is committed. The content itself is stored in
|
|
|
|
git-annex's backend.
|
2010-10-20 00:07:50 +00:00
|
|
|
|
2010-10-20 00:19:52 +00:00
|
|
|
## renaming files
|
|
|
|
|
|
|
|
# cd ~/annex
|
|
|
|
# git mv big_file my_cool_big_file
|
|
|
|
# mkdir iso
|
2010-10-27 18:33:44 +00:00
|
|
|
# git mv debian.iso iso/
|
2010-10-20 00:19:52 +00:00
|
|
|
# git commit -m moved
|
|
|
|
|
|
|
|
You can use any normal git operations to move files around, or even
|
2010-10-27 18:33:44 +00:00
|
|
|
make copies or delete them.
|
|
|
|
|
|
|
|
Notice that, since annexed files are represented by symlinks,
|
|
|
|
the symlink will break when the file is moved into a subdirectory.
|
|
|
|
But, git-annex will fix this up for you when you commit --
|
|
|
|
it has a pre-commit hook that watches for and corrects broken symlinks.
|
2010-10-20 00:19:52 +00:00
|
|
|
|
2010-10-21 21:59:32 +00:00
|
|
|
## getting file content
|
2010-10-20 00:07:50 +00:00
|
|
|
|
2010-10-21 21:59:32 +00:00
|
|
|
A repository does not always have all annexed file contents available.
|
|
|
|
When you need the content of a file, you can use "git annex get" to
|
|
|
|
make it available.
|
|
|
|
|
2010-10-27 18:48:59 +00:00
|
|
|
We can use this to copy everything in the laptop's annex to the
|
2010-10-21 21:59:32 +00:00
|
|
|
USB drive.
|
2010-10-20 00:07:50 +00:00
|
|
|
|
|
|
|
# cd /media/usb/annex
|
2010-10-27 18:48:59 +00:00
|
|
|
# git pull laptop master
|
2010-10-20 00:07:50 +00:00
|
|
|
# git annex get .
|
2010-10-27 18:48:59 +00:00
|
|
|
get my_cool_big_file (copying from laptop...) ok
|
|
|
|
get iso/debian.iso (copying from laptop...) ok
|
2010-10-20 00:07:50 +00:00
|
|
|
|
2010-10-27 18:48:59 +00:00
|
|
|
Notice that you had to git pull from laptop first, this lets git-annex know
|
|
|
|
what has changed in laptop, and so it knows about the files present there and
|
2010-10-26 00:45:50 +00:00
|
|
|
can get them.
|
2010-10-20 00:07:50 +00:00
|
|
|
|
|
|
|
## transferring files: When things go wrong
|
|
|
|
|
|
|
|
After a while, you'll have serveral annexes, with different file contents.
|
|
|
|
You don't have to try to keep all that straight; git-annex does
|
2010-10-20 16:16:49 +00:00
|
|
|
[[location_tracking]] for you. If you ask it to get a file and the drive
|
2010-10-20 00:07:50 +00:00
|
|
|
or file server is not accessible, it will let you know what it needs to get
|
|
|
|
it:
|
|
|
|
|
|
|
|
# git annex get video/hackity_hack_and_kaxxt.mov
|
|
|
|
get video/_why_hackity_hack_and_kaxxt.mov (not available)
|
2010-10-27 18:48:59 +00:00
|
|
|
I was unable to access these remotes: usbdrive, server
|
2010-10-20 00:07:50 +00:00
|
|
|
Try making some of these repositories available:
|
|
|
|
5863d8c0-d9a9-11df-adb2-af51e6559a49 -- my home file server
|
|
|
|
58d84e8a-d9ae-11df-a1aa-ab9aa8c00826 -- portable USB drive
|
|
|
|
ca20064c-dbb5-11df-b2fe-002170d25c55 -- backup SATA drive
|
|
|
|
failed
|
|
|
|
# sudo mount /media/usb
|
|
|
|
# git annex get video/hackity_hack_and_kaxxt.mov
|
|
|
|
get video/hackity_hack_and_kaxxt.mov (copying from usbdrive...) ok
|
|
|
|
# git commit -a -m "got a video I want to rewatch on the plane"
|
|
|
|
|
|
|
|
## removing files
|
|
|
|
|
|
|
|
You can always drop files safely. Git-annex checks that some other annex
|
|
|
|
has the file before removing it.
|
|
|
|
|
2010-10-20 00:22:37 +00:00
|
|
|
# git annex drop iso/debian.iso
|
2010-10-20 00:07:50 +00:00
|
|
|
drop iso/Debian_5.0.iso ok
|
|
|
|
# git commit -a -m "freed up space"
|
|
|
|
|
|
|
|
## removing files: When things go wrong
|
|
|
|
|
|
|
|
Before dropping a file, git-annex wants to be able to look at other
|
|
|
|
remotes, and verify that they still have a file. After all, it could
|
|
|
|
have been dropped from them too. If the remotes are not mounted/available,
|
|
|
|
you'll see something like this.
|
|
|
|
|
|
|
|
# git annex drop important_file other.iso
|
|
|
|
drop important_file (unsafe)
|
|
|
|
Could only verify the existence of 0 out of 1 necessary copies
|
|
|
|
I was unable to access these remotes: usbdrive
|
|
|
|
Try making some of these repositories available:
|
|
|
|
58d84e8a-d9ae-11df-a1aa-ab9aa8c00826 -- portable USB drive
|
|
|
|
ca20064c-dbb5-11df-b2fe-002170d25c55 -- backup SATA drive
|
|
|
|
(Use --force to override this check, or adjust annex.numcopies.)
|
|
|
|
failed
|
|
|
|
drop other.iso (unsafe)
|
|
|
|
Could only verify the existence of 0 out of 1 necessary copies
|
|
|
|
No other repository is known to contain the file.
|
|
|
|
(Use --force to override this check, or adjust annex.numcopies.)
|
|
|
|
failed
|
|
|
|
|
|
|
|
Here you might --force it to drop `important_file` if you trust your backup.
|
|
|
|
But `other.iso` looks to have never been copied to anywhere else, so if
|
|
|
|
it's something you want to hold onto, you'd need to transfer it to
|
|
|
|
some other repository before dropping it.
|
2010-10-21 20:30:16 +00:00
|
|
|
|
2010-11-10 17:27:52 +00:00
|
|
|
## modifying annexed files
|
|
|
|
|
|
|
|
Normally, the content of files in the annex is prevented from being modified.
|
2010-11-10 18:20:50 +00:00
|
|
|
That's a good thing, because it might be the only copy, you wouldn't
|
|
|
|
want to lose it in a fumblefingered mistake.
|
2010-11-10 17:27:52 +00:00
|
|
|
|
|
|
|
# echo oops > my_cool_big_file
|
|
|
|
bash: my_cool_big_file: Permission deined
|
|
|
|
|
|
|
|
In order to modify a file, it should first be unlocked.
|
|
|
|
|
|
|
|
# git annex unlock my_cool_big_file
|
|
|
|
unlock my_cool_big_file (copying...) ok
|
|
|
|
|
2010-11-10 18:20:50 +00:00
|
|
|
That replaces the symlink that normally points at its content with a copy
|
2010-11-10 17:27:52 +00:00
|
|
|
of the content. You can then modify the file like any regular file. Because
|
|
|
|
it is a regular file.
|
|
|
|
|
2010-11-10 18:20:50 +00:00
|
|
|
(If you decide you don't need to modify the file after all, or want to discard
|
|
|
|
modifications, just use `git annex lock`.)
|
2010-11-10 17:27:52 +00:00
|
|
|
|
|
|
|
When you `git commit`, git-annex's pre-commit hook will automatically
|
|
|
|
notice that you are committing an unlocked file, and add its new content
|
|
|
|
to the annex. The file will be replaced with a symlink to the new content,
|
|
|
|
and this symlink is what gets committed to git in the end.
|
|
|
|
|
|
|
|
# echo "now smaller, but even cooler" > my_cool_big_file
|
|
|
|
# git commit my_cool_big_file -m "changed an annexed file"
|
|
|
|
add my_cool_big_file ok
|
|
|
|
[master 64cda67] changed an annexed file
|
|
|
|
2 files changed, 2 insertions(+), 1 deletions(-)
|
|
|
|
create mode 100644 .git-annex/SHA1:0b1d8616d0238cb9418a0e0a649bdad2e9e7faae.log
|
|
|
|
|
|
|
|
There is one problem with using `git commit` like this: Git wants to first
|
|
|
|
stage the entire contents of the file in its index. That can be slow for
|
|
|
|
big files (sorta why git-annex exists in the first place). So, the
|
|
|
|
automatic handling on commit is a nice safety feature, since it prevents
|
|
|
|
the file content being accidentially commited into git. But when working with
|
|
|
|
big files, it's faster to explicitly add them to the annex yourself
|
|
|
|
before committing.
|
|
|
|
|
|
|
|
# echo "now smaller, but even cooler yet" > my_cool_big_file
|
|
|
|
# git annex add my_cool_big_file
|
|
|
|
add my_cool_big_file ok
|
|
|
|
# git commit my_cool_big_file -m "changed an annexed file"
|
|
|
|
|
2010-10-22 19:38:31 +00:00
|
|
|
## using ssh remotes
|
|
|
|
|
2010-10-27 18:48:59 +00:00
|
|
|
So far in this walkthrough, git-annex has been used with a remote
|
|
|
|
repository on a USB drive. But it can also be used with a git remote
|
|
|
|
that is truely remote, a host accessed by ssh.
|
2010-10-22 19:38:31 +00:00
|
|
|
|
|
|
|
Say you have a desktop on the same network as your laptop and want
|
|
|
|
to clone the laptop's annex to it:
|
|
|
|
|
|
|
|
# git clone ssh://mylaptop/home/me/annex ~/annex
|
|
|
|
# cd ~/annex
|
|
|
|
# git annex init "my desktop"
|
|
|
|
|
|
|
|
Now you can get files and they will be transferred by `scp`:
|
|
|
|
|
|
|
|
# git annex get my_cool_big_file
|
2010-10-27 18:48:59 +00:00
|
|
|
get my_cool_big_file (getting UUID for origin...) (copying from origin...)
|
2010-10-22 19:42:59 +00:00
|
|
|
WORM:1285650548:2159:my_cool_big_file 100% 2159 2.1KB/s 00:00
|
2010-10-23 18:14:50 +00:00
|
|
|
ok
|
2010-10-22 19:38:31 +00:00
|
|
|
|
|
|
|
When you drop files, git-annex will ssh over to the remote and make
|
|
|
|
sure the file's content is still there before removing it locally:
|
|
|
|
|
|
|
|
# git annex drop my_cool_big_file
|
|
|
|
drop my_cool_big_file (checking origin..) ok
|
|
|
|
|
|
|
|
Note that normally git-annex prefers to use non-ssh remotes, like
|
|
|
|
a USB drive, before ssh remotes. They are assumed to be faster/cheaper to
|
|
|
|
access, if available. There is a annex-cost setting you can configure in
|
|
|
|
`.git/config` to adjust which repositories it prefers. See
|
|
|
|
[[the_man_page|git-annex]] for details.
|
|
|
|
|
|
|
|
Also, note that you need full shell access for this to work --
|
|
|
|
git-annex needs to be able to ssh in and run commands.
|
|
|
|
|
2010-10-27 18:48:59 +00:00
|
|
|
## moving file content between repositories
|
2010-10-26 00:45:50 +00:00
|
|
|
|
|
|
|
Often you will want to move some file contents from a repository to some
|
|
|
|
other one. For example, your laptop's disk is getting full; time to move
|
2010-10-27 18:48:59 +00:00
|
|
|
some files to an external disk before moving another file from a file
|
|
|
|
server to your laptop. Doing that by hand (by using `git annex get` and
|
|
|
|
`git annex drop`) is possible, but a bit of a pain. `git annex move`
|
|
|
|
makes it very easy.
|
2010-10-26 00:45:50 +00:00
|
|
|
|
|
|
|
# git annex move my_cool_big_file --to usbdrive
|
2010-10-26 00:48:32 +00:00
|
|
|
move my_cool_big_file (moving to usbdrive...) ok
|
2010-10-27 18:48:59 +00:00
|
|
|
# git annex move video/hackity_hack_and_kaxxt.mov --from fileserver
|
|
|
|
move video/hackity_hack_and_kaxxt.mov (moving from fileserver...)
|
2010-10-26 00:45:50 +00:00
|
|
|
WORM:1274316523:86050597:hackity_hack_and_kax 100% 82MB 199.1KB/s 07:02
|
2010-10-26 00:48:32 +00:00
|
|
|
ok
|
2010-10-26 00:45:50 +00:00
|
|
|
|
2010-10-21 20:36:01 +00:00
|
|
|
## using the URL backend
|
2010-10-21 20:30:16 +00:00
|
|
|
|
|
|
|
git-annex has multiple key-value [[backends]]. So far this walkthrough has
|
|
|
|
demonstrated the default, WORM (Write Once, Read Many) backend.
|
|
|
|
|
|
|
|
Another handy backend is the URL backend, which can fetch file's content
|
|
|
|
from remote URLs. Here's how to set up some files in your repository
|
|
|
|
that use this backend:
|
|
|
|
|
|
|
|
# git annex fromkey --backend=URL --key=http://www.archive.org/somefile somefile
|
2010-10-21 20:35:04 +00:00
|
|
|
fromkey somefile ok
|
2010-10-21 20:30:16 +00:00
|
|
|
# git commit -m "added a file from the Internet Archive"
|
|
|
|
|
|
|
|
Now you if you ask git-annex to get that file, it will download it,
|
2010-10-21 20:36:01 +00:00
|
|
|
and cache it locally.
|
2010-10-21 20:30:16 +00:00
|
|
|
|
|
|
|
# git annex get somefile
|
|
|
|
get somefile (downloading)
|
|
|
|
#########################################################################100.0%
|
2010-10-23 18:14:50 +00:00
|
|
|
ok
|
2010-10-21 20:30:16 +00:00
|
|
|
|
|
|
|
You can always drop files downloaded by the URL backend. It is assumed
|
|
|
|
that the URL is stable; no local backup is kept.
|
|
|
|
|
|
|
|
# git annex drop somefile
|
|
|
|
drop somefile (ok)
|
2010-11-08 01:02:25 +00:00
|
|
|
|
|
|
|
## using the SHA1 backend
|
|
|
|
|
|
|
|
Another handy alternative to the default [[backend|backends]] is the
|
|
|
|
SHA1 backend. This backend provides more git-style assurance that your data
|
|
|
|
has not been damanged. And the checksum means that when you add the same
|
|
|
|
content to the annex twice, only one copy need be stored in the backend.
|
|
|
|
|
|
|
|
The only reason it's not the default is that it needs to checksum
|
|
|
|
files when they're added to the annex, and this can slow things down
|
|
|
|
significantly for really big files. To make SHA1 the detault, just
|
|
|
|
add something like this to `.gitattributes`:
|
|
|
|
|
|
|
|
* git-annex-backend=SHA1
|
2010-11-13 18:59:27 +00:00
|
|
|
|
|
|
|
## fsck: verifying your data
|
|
|
|
|
|
|
|
You can use the fsck subcommand to check for problems in your data.
|
|
|
|
What can be checked depends on the [[backend|backends]] you've used to store
|
|
|
|
the data. For example, when you use the SHA1 backend, fsck will verify that
|
|
|
|
the checksums of your files are good. Fsck also checks that the annex.numcopies
|
|
|
|
setting is satisfied for all files, and it warns about any dangling values
|
|
|
|
in `.git/annex/objects/`.
|
|
|
|
|
|
|
|
# git annex fsck
|
|
|
|
fsck (checking for unused data...) (checking files...) ok
|
|
|
|
|
|
|
|
Fsck checks the entire repository for problems by default. But you can
|
|
|
|
also specify the files to check.
|
|
|
|
This is particularly useful if you're using sha1 and don't want to spend
|
|
|
|
a long time checksumming everything.
|
|
|
|
|
|
|
|
# git annex fsck my_cool_big_file
|
|
|
|
fsck my_cool_big_file (checksum..) ok
|
|
|
|
|
|
|
|
## fsck: When things go wrong
|
|
|
|
|
|
|
|
Fsck never deletes possibly bad data; instead it will be moved to
|
|
|
|
`.git/annex/bad/` for you to review. Here is a sample of what fsck
|
|
|
|
might say about a badly messed up annex:
|
|
|
|
|
|
|
|
# git annex fsck
|
|
|
|
fsck (checking for unused data...)
|
|
|
|
Some annexed data is no longer pointed to by any files in the repository.
|
|
|
|
If this data is no longer needed, it can be removed using git-annex dropkey:
|
|
|
|
WORM:1289672605:3:file
|
|
|
|
(checking files...)
|
|
|
|
|