summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar listx <listx@web>2016-08-04 02:07:55 +0000
committerGravatar admin <admin@branchable.com>2016-08-04 02:07:55 +0000
commit1bfd6e84612079a59ea5a09a16faa8010aaf567a (patch)
treee978115885aafbc8adb92fb4847944b506062de3
parentb63f39601ee4152dec92620b4be3d72716f0c94e (diff)
Added a comment
-rw-r--r--doc/forum/git_annex_vicfg___40__preferred_content__41___examples/comment_3_78bc3e56502e425f4f77bc35ed2199b8._comment41
1 files changed, 41 insertions, 0 deletions
diff --git a/doc/forum/git_annex_vicfg___40__preferred_content__41___examples/comment_3_78bc3e56502e425f4f77bc35ed2199b8._comment b/doc/forum/git_annex_vicfg___40__preferred_content__41___examples/comment_3_78bc3e56502e425f4f77bc35ed2199b8._comment
new file mode 100644
index 000000000..c1345862b
--- /dev/null
+++ b/doc/forum/git_annex_vicfg___40__preferred_content__41___examples/comment_3_78bc3e56502e425f4f77bc35ed2199b8._comment
@@ -0,0 +1,41 @@
+[[!comment format=mdwn
+ username="listx"
+ subject="comment 3"
+ date="2016-08-04T02:07:55Z"
+ content="""
+I went ahead and used `git annex wanted . \"exclude=FOO\"` and it did what I wanted. For posterity, here are some other observations:
+
+- The file that `git annex vicfg` shows was updated to include the invocation of `git annex wanted`, like this:
+
+```
+...(truncated for brevity)...
+# Repository preferred contents
+# (Set to \"standard\" to use a repository's group's preferred contents)
+# (for k0)
+wanted a71d805d-df77-42e7-97b0-ba7686c05083 = exclude=FOO
+# (for web)
+...(truncated for brevity)...
+```
+
+()- I noticed that the UUID above matches the UUID found in my `.git/config` file, which looks like this:
+
+```
+[core]
+ repositoryformatversion = 0
+ filemode = true
+ bare = false
+ logallrefupdates = true
+[remote \"origin\"]
+ url = m0:/mnt/a/annex.git
+ fetch = +refs/heads/*:refs/remotes/origin/*
+ annex-uuid = c5c012cc-2080-481f-81bc-7f449f33490b
+[branch \"master\"]
+ remote = origin
+ merge = refs/heads/master
+[annex]
+ uuid = a71d805d-df77-42e7-97b0-ba7686c05083
+ version = 5
+```
+
+.
+"""]]