File: comment_1_e14e0a1d55d01cb4f67a94bbe349b872._comment

package info (click to toggle)
git-annex 10.20230126-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 69,344 kB
  • sloc: haskell: 74,654; javascript: 9,103; sh: 1,304; makefile: 203; perl: 136; ansic: 44
file content (20 lines) | stat: -rw-r--r-- 477 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[[!comment format=mdwn
 username="http://joeyh.name/"
 nickname="joey"
 subject="comment 1"
 date="2013-05-19T20:18:11Z"
 content="""
Essentially, you want to run this:

<pre>
git annex add
git annex sync
for remote in $(git remote); do
    git annex copy --auto --to $remote
    git annex get --auto --from $remote
done
git annex drop --auto
</pre>

Of course this cannot sync with XMPP remotes. Otherwise it will get you to essentially the same place as the assistant.
"""]]