summaryrefslogtreecommitdiff
path: root/doc/walkthrough/unused_data.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-02-27 12:45:48 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-02-27 12:45:48 -0400
commit98e246b49b3c4fed319fe7bc1e900ba20ebfc9e1 (patch)
treead49ec6baf1b57f3acc8b694bdfc1bbd0986021f /doc/walkthrough/unused_data.mdwn
parent9e49a71282def0b6d6f7507d59eb0f805c6e0073 (diff)
split the walkthrough and inline back together
Diffstat (limited to 'doc/walkthrough/unused_data.mdwn')
-rw-r--r--doc/walkthrough/unused_data.mdwn30
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/walkthrough/unused_data.mdwn b/doc/walkthrough/unused_data.mdwn
new file mode 100644
index 000000000..69a581fe1
--- /dev/null
+++ b/doc/walkthrough/unused_data.mdwn
@@ -0,0 +1,30 @@
+It's possible for data to accumulate in the annex that no files point to
+anymore. One way it can happen is if you `git rm` a file without
+first calling `git annex drop`. And, when you modify an annexed file, the old
+content of the file remains in the annex. Another way is when migrating
+between backends.
+
+This might be historical data you want to preserve, so git-annex defaults to
+preserving it. So from time to time, you may want to check for such data and
+eliminate it to save space.
+
+ # git annex unused
+ unused (checking for unused data...)
+ Some annexed data is no longer pointed to by any files in the repository.
+ NUMBER KEY
+ 1 WORM:1289672605:3:file
+ 2 WORM:1289672605:14:file
+ (To see where data was previously used, try: git log --stat -S'KEY')
+ (To remove unwanted data: git-annex dropunused NUMBER)
+ ok
+
+After running `git annex unused`, you can follow the instructions to examine
+the history of files that used the data, and if you decide you don't need that
+data anymore, you can easily remove it:
+
+ # git annex dropunused 1
+ dropunused 1 ok
+
+Hint: To drop a lot of unused data, use a command like this:
+
+ # git annex dropunused `seq 1 1000`