diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-12-02 15:57:30 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-12-02 15:57:30 -0400 |
commit | 89f69251dd0113663b1995f56a9ce6d17be6e498 (patch) | |
tree | ec4caa7cc827dfaeb5b903024b1e478670daf1a8 /doc | |
parent | b38a482dd99a4f16c9752190e929b7726aba4c83 (diff) |
webapp: Fix bugs that could result in a relative path such as "." being written to ~/.config/git-annex/autostart
and ignore any such relative paths in the file
This was a reversion caused by the relative path changes in 5.20150113.
Diffstat (limited to 'doc')
2 files changed, 25 insertions, 0 deletions
diff --git a/doc/bugs/A_weird___34__.__34___repository_shows_up_when_switching.mdwn b/doc/bugs/A_weird___34__.__34___repository_shows_up_when_switching.mdwn index 4bb1fc0e2..357517b0e 100644 --- a/doc/bugs/A_weird___34__.__34___repository_shows_up_when_switching.mdwn +++ b/doc/bugs/A_weird___34__.__34___repository_shows_up_when_switching.mdwn @@ -23,3 +23,4 @@ there is nothing relevant to this error in there unfortunately. ### Have you had any luck using git-annex before? (Sometimes we get tired of reading bug reports all day and a lil' positive end note does wonders) +> [[fixed|done]] --[[Joey]] diff --git a/doc/bugs/A_weird___34__.__34___repository_shows_up_when_switching/comment_2_ffe8e30474e87e8cfa5aee2a3acb0952._comment b/doc/bugs/A_weird___34__.__34___repository_shows_up_when_switching/comment_2_ffe8e30474e87e8cfa5aee2a3acb0952._comment new file mode 100644 index 000000000..e83842dea --- /dev/null +++ b/doc/bugs/A_weird___34__.__34___repository_shows_up_when_switching/comment_2_ffe8e30474e87e8cfa5aee2a3acb0952._comment @@ -0,0 +1,24 @@ +[[!comment format=mdwn + username="joey" + subject="""comment 2""" + date="2015-12-02T19:36:14Z" + content=""" +Found this in the changelog: + + * webapp: When adding another local repository, and combining it + with the current repository, the new repository's remote path + was set to "." rather than the path to the current repository. + This was a reversion caused by the relative path changes in 5.20150113. + +I guess this is a similar problem, although it seems that the "." in your case +made it into `~/.config/git-annex/autostart` + +I found two ways to do that. One is to tell the webapp to make a repository, and +enter "." as the repository location. The other, which is probably what you +did, is to go to Configuration -> Preferences and uncheck "Auto start", save +and then go back and check it. This wrongly puts in a "." instead of the full +repo path. + +I've fixed all code paths to force absolute paths in the autostart file, +and made any relative paths that got in there be ignored. +"""]] |