diff options
author | http://edheil.wordpress.com/ <http://edheil.wordpress.com/@web> | 2013-05-10 12:52:49 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2013-05-10 12:52:49 +0000 |
commit | e8aeff7e0b18065c448b287e8fbeb790dbcb9ee7 (patch) | |
tree | 60224346f88b86993b4e18660450c970c90ac4f6 | |
parent | 164468188b085bd1ce7785b2f4836c3c5f8e5657 (diff) |
Added a comment
-rw-r--r-- | doc/forum/Accessing_files_in_bare_repository/comment_6_42d923916232c81f3b8bdbefa34a89d3._comment | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/forum/Accessing_files_in_bare_repository/comment_6_42d923916232c81f3b8bdbefa34a89d3._comment b/doc/forum/Accessing_files_in_bare_repository/comment_6_42d923916232c81f3b8bdbefa34a89d3._comment new file mode 100644 index 000000000..f33b52146 --- /dev/null +++ b/doc/forum/Accessing_files_in_bare_repository/comment_6_42d923916232c81f3b8bdbefa34a89d3._comment @@ -0,0 +1,18 @@ +[[!comment format=mdwn + username="http://edheil.wordpress.com/" + ip="173.162.44.162" + subject="comment 6" + date="2013-05-10T12:52:48Z" + content=""" +OK, I'm going to guess the problem is there is no \"master\" branch in your cloned repository, because there is no \"master\" branch in a bare remote. (Not sure about this, just guessing.) Try \"git branch\" in your clone. If there is no \"master\" branch, that's the problem. + +If that's true, the right thing to do would probably have been not to clone from it, but to create a fresh git repo and then set your bare repo as a remote. + +You could try doing that -- create a fresh git repo, git annex init it, and then try something like \"git remote add barerepo /path/to/bare/repo\" and then \"git annex sync\" which should pull changes from the bare repo's 'synced/master' branch into your 'synced/master' branch and from there into your master branch, giving you all your symlinks. + +If that works you could declare your previous attempt \"dead\" and you'll be good. + +It *may* also be possible to just fix the clone you've got by creating a master branch, maybe by branching off of synced/master. Do a \"git branch\" and see whether synced/master exists, and just try \"git branch master synced/master\" and then \"git checkout master\" and that might do the job! + +But I'm just throwing ideas around here, so I hope somebody who actually knows what's going on (joey? are you there?) will pipe up. +"""]] |