summaryrefslogtreecommitdiff
path: root/doc/todo/Recovering_from_a_bad_sync.mdwn
diff options
context:
space:
mode:
authorGravatar http://svario.it/gioele <gioele@web>2014-07-12 09:00:19 +0000
committerGravatar admin <admin@branchable.com>2014-07-12 09:00:19 +0000
commit614ac5a07bd93afd73004069806cffb67cc25272 (patch)
tree12f0435ac5d46f25435231dee31f366b1779fa4f /doc/todo/Recovering_from_a_bad_sync.mdwn
parent0bb1fdb2369f1c2320248c01d5e7b06d333dab6a (diff)
New topic "Recovering from a bad sync"
Diffstat (limited to 'doc/todo/Recovering_from_a_bad_sync.mdwn')
-rw-r--r--doc/todo/Recovering_from_a_bad_sync.mdwn29
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/todo/Recovering_from_a_bad_sync.mdwn b/doc/todo/Recovering_from_a_bad_sync.mdwn
new file mode 100644
index 000000000..4b7ca672c
--- /dev/null
+++ b/doc/todo/Recovering_from_a_bad_sync.mdwn
@@ -0,0 +1,29 @@
+Instead of using `sync origin` for the first sync and a simple `sync` for the other syncs,
+
+ # on pc1
+ git annex init "pc1"
+ git annex direct
+ git annex add .
+ git annex sync origin # remote specified on the first sync
+
+ # add some files
+ git annex add .
+ git annex sync
+
+I used `sync` first and only later I used `sync origin`
+
+ # on pc1
+ git annex init "pc1"
+ git annex direct
+ git annex add .
+ git annex sync
+
+ # add some files
+ git annex add .
+ git annex sync origin # remote specified on a later sync
+
+These sequences of commands create two completely different git histories.
+
+More important, if one clones on pc2 the first repository, they will see both the pc1 remote and the pc2 remote. Instead, if one clones on pc2 the repository created by the second combination of commands, they will see only the pc2 remote.
+
+What commands should I use on pc1 to fix the history so that when pc2 clones from the origin repository it will see both the pc1 remote and its own local remote?