summaryrefslogtreecommitdiff
path: root/doc/design/assistant/blog/day_151__direct_mode_toggle.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-12-13 16:09:47 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-12-13 16:09:47 -0400
commit5d4c8d8cb43dbc5860bb858635a2e96cf2dead2e (patch)
treed45d16b9d9369e86f4c9190132b8776f28b6fa98 /doc/design/assistant/blog/day_151__direct_mode_toggle.mdwn
parent7e74a9da9ed7972a8de1f94b5feaa7c8941295be (diff)
blog for the day
Diffstat (limited to 'doc/design/assistant/blog/day_151__direct_mode_toggle.mdwn')
-rw-r--r--doc/design/assistant/blog/day_151__direct_mode_toggle.mdwn59
1 files changed, 59 insertions, 0 deletions
diff --git a/doc/design/assistant/blog/day_151__direct_mode_toggle.mdwn b/doc/design/assistant/blog/day_151__direct_mode_toggle.mdwn
new file mode 100644
index 000000000..c0b3f3245
--- /dev/null
+++ b/doc/design/assistant/blog/day_151__direct_mode_toggle.mdwn
@@ -0,0 +1,59 @@
+Built `git annex direct` and `git annex indirect` to toggle back and forth
+between direct mode. Made `git annex status` show if the repository is in
+direct mode. Now *only* merging is needed for direct mode to be basically
+usable.
+
+I can do a little demo now. Pay attention to the "@" ls shows at the end
+of symlinks.
+
+ joey@gnu:~/tmp/bench/rdirect>ls
+ myfile@ otherfile@
+ joey@gnu:~/tmp/bench/rdirect>git annex find
+ otherfile
+ # So, two files, only one present in this repo.
+
+ joey@gnu:~/tmp/bench/rdirect>git annex direct
+ commit
+ # On branch master
+ # Your branch is ahead of 'origin/master' by 7 commits.
+ #
+ nothing to commit (working directory clean)
+ ok
+ direct myfile ok
+ direct otherfile ok
+ direct ok
+
+ joey@gnu:~/tmp/bench/rdirect>ls
+ myfile@ otherfile
+ # myfile is still a broken symlink because we don't have its content
+ joey@gnu:~/tmp/bench/rdirect>git annex get myfile
+ get myfile (from origin...) ok
+ (Recording state in git...)
+ joey@gnu:~/tmp/bench/rdirect>ls
+ myfile otherfile
+
+ joey@gnu:~/tmp/bench/rdirect>echo "look mom, no symlinks" >> myfile
+ joey@gnu:~/tmp/bench/rdirect>git annex sync
+ add myfile (checksum...) ok
+ commit
+ (Recording state in git...)
+ [master 0e8de9b] git-annex automatic sync
+ ...
+ ok
+
+ joey@gnu:~/tmp/bench/rdirect>git annex indirect
+ commit ok
+ indirect myfile ok
+ indirect otherfile ok
+ indirect ok
+ joey@gnu:~/tmp/bench/rdirect>ls
+ myfile@ otherfile@
+
+I'd like `git annex direct` to set the repository to untrusted, but
+I didn't do it. Partly because having `git annex indirect` set it back to
+semitrusted seems possibly wrong -- the user might not trust a repo even in
+indirect mode. Or might fully trust it. The docs will encourage users to
+set direct mode repos to untrusted -- in direct mode you're operating
+without large swathes of git-annex's carefully constructed safety net.
+(When the assistant later uses direct mode, it'll untrust the repository
+automatically.)