summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-09-18 11:16:43 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-09-18 11:16:43 -0400
commitfa97f6ce6087f07aa90256aaba5ee7c478294437 (patch)
tree777f44302a63883a2bda46e2884bea4071afedce
parente1fa66d53bcbfc67cef796187b03f57ed075ad3e (diff)
parent49cde65912e1bf90b1b4175c64f307c5fa4e2d7d (diff)
Merge branch 'master' of ssh://git-annex.branchable.com
-rw-r--r--doc/forum/sync_remote_repo_on_local_sync_upstream.mdwn21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/forum/sync_remote_repo_on_local_sync_upstream.mdwn b/doc/forum/sync_remote_repo_on_local_sync_upstream.mdwn
new file mode 100644
index 000000000..c2b566cc5
--- /dev/null
+++ b/doc/forum/sync_remote_repo_on_local_sync_upstream.mdwn
@@ -0,0 +1,21 @@
+I am looking for a short cut for my workflow where I sync a (somewhat) central repo and a few client repos.
+
+So, I sync upstream
+
+ laptop > git annex sync --content
+
+and ssh to the central repo and run another sync
+
+ server > git annex sync
+
+to bring it up to date so that I can sync/pull it again from my desktop.
+
+Is there an easy way to script/do both steps in one for different protocols? E.g., update a ssh repo and a USB-drive repo when syncing on the local one?
+
+At the moment, I would try to check for all known remotes
+
+ > git remote -v
+
+and depending on the protocol ssh/cd into each for triggering a sync.
+
+