diff options
author | Joey Hess <id@joeyh.name> | 2014-12-03 16:33:32 -0400 |
---|---|---|
committer | Joey Hess <id@joeyh.name> | 2014-12-03 16:33:32 -0400 |
commit | 35d2755ad1786da1b351e6c65fd9f87fa7d9623c (patch) | |
tree | d92002baf7231d89797dca25261198dd8b0e7481 | |
parent | 374379d935a452a35ef79d5c9326d04c98afb0fa (diff) | |
parent | 5bb6c6faa23d2d188e4de41b2f7c2b432fe42e04 (diff) |
Merge branch 'master' of ssh://git-annex.branchable.com
-rw-r--r-- | doc/forum/How_to_emulate___34__one-way_sync__34__s_in_a_direct_repo__63__/comment_2_748d243bac14a8d55be4ac324c581c1d._comment | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/doc/forum/How_to_emulate___34__one-way_sync__34__s_in_a_direct_repo__63__/comment_2_748d243bac14a8d55be4ac324c581c1d._comment b/doc/forum/How_to_emulate___34__one-way_sync__34__s_in_a_direct_repo__63__/comment_2_748d243bac14a8d55be4ac324c581c1d._comment new file mode 100644 index 000000000..edef7c147 --- /dev/null +++ b/doc/forum/How_to_emulate___34__one-way_sync__34__s_in_a_direct_repo__63__/comment_2_748d243bac14a8d55be4ac324c581c1d._comment @@ -0,0 +1,62 @@ +[[!comment format=mdwn + username="https://www.google.com/accounts/o8/id?id=AItOawmWBvsZvSsAL8P2ye3F0OBStjFCVnOImzM" + nickname="Jarno" + subject="comment 2" + date="2014-12-03T20:04:42Z" + content=""" +Thank you, `remote.foo.annex-readonly` looks like a nice solution for the update-changes-from-other.sh! + +For discard-all-my-changes.sh, `reset --hard` through proxy worked otherwise nicely, but it doesn't seem to restore deletions: + + $ git annex proxy -- git reset --hard origin/master + HEAD is now at 37aed97 git-annex automatic sync + + $ echo \"A\" > test.txt + + $ git annex add test.txt + add test.txt ok + (Recording state in git...) + + $ git annex sync + commit ok + pull origin + ok + push origin + Counting objects: 17, done. + Delta compression using up to 8 threads. + Compressing objects: 100% (7/7), done. + Writing objects: 100% (8/8), 783 bytes | 0 bytes/s, done. + Total 8 (delta 4), reused 1 (delta 0) + To ssh://gitannex@serv-gitannex:/home/gitannex/git-annex-test.git + 88a25b5..0a8281d git-annex -> synced/git-annex + 37aed97..2978dcd annex/direct/master -> synced/master + ok + + $ rm test.txt + + $ git annex proxy -- git reset --hard origin/master + warning: packfile .git/objects/pack/pack-42568744cdbba46b2dd71a7f37546a52bb26684 + 4.pack cannot be accessed + HEAD is now at 2978dcd git-annex automatic sync + + $ ls test.txt + ls: test.txt: No such file or directory + + $ git annex status + D test.txt + + $ git annex version + git-annex version: 5.20141128-g70f997e + build flags: Assistant Webapp Webapp-secure Pairing Testsuite S3 WebDAV DNS Feed + s Quvi TDFA CryptoHash + key/value backends: SHA256E SHA1E SHA512E SHA224E SHA384E SKEIN256E SKEIN512E SH + A256 SHA1 SHA512 SHA224 SHA384 SKEIN256 SKEIN512 WORM URL + remote types: git gcrypt S3 bup directory rsync web webdav tahoe glacier ddar ho + ok external + local repository version: 5 + supported repository version: 5 + upgrade supported from repository versions: 2 3 4 + +Note the \"pack cannot be accessed\" after the second reset. + +"""]] |