summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2015-03-02
|\
* | devblogGravatar Joey Hess2015-03-02
| |
* | Submodules are now supported by git-annex!Gravatar Joey Hess2015-03-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Seems to work, but still experimental until it's been tested more. When repositories are on filesystems not supporting symlinks, the .git dir symlink trick cannot be used. Since we're going to be in direct mode anyway, the .git dir symlink is not strictly needed. However, I have not fixed the code that creates new annex symlinks to handle this case -- the committed symlinks will be wrong. git annex sync happens to currently fail in a submodule using direct mode, because there's no HEAD ref. That also needs to be dealt with to get this fully working in crippled filesystems. Leaving http://github.com/datalad/datalad/issues/44 open until these issues are dealt with.
* | add -q to git symbolic-ref callGravatar Joey Hess2015-03-02
| | | | | | | | | | | | | | | | | | | | | | Avoids a warning message from git when HEAD doesn't exist. Which it won't when eg, git-annex is used in a submodule just cloned with git clone --recursive. In this case, a specific ref is checked out and there's no HEAD yet. The code already returned Nothing in this case, so no behavior change other than not showing the warning. And git-annex operates fine in this situation.
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawlc-3pdibcizrdz4WmZooECL0k6AvM1cWc2015-03-02
| |
| * poll vote (OpenStack SWIFT)Gravatar 195.187.238.802015-03-02
| |
| * poll vote (OpenStack SWIFT)Gravatar 195.187.238.802015-03-02
| |
* | applied patchGravatar Joey Hess2015-03-02
| |
* | Allow this repository to be checked out in filesystems with 255 char ↵Gravatar Eric OConnor2015-03-02
| | | | | | | | filename limits
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2015-03-02
|\|
| * removedGravatar https://www.google.com/accounts/o8/id?id=AItOawnG-DZQa3d3Jn7K2q36TlbmZ8v2YuV-23M2015-03-02
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawnG-DZQa3d3Jn7K2q36TlbmZ8v2YuV-23M2015-03-02
| |
| * (no commit message)Gravatar Eric2015-03-02
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-03-02
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-03-02
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-03-01
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-03-01
| |
| * Added a comment: Why shoul git-annex support --git-dirGravatar https://www.google.com/accounts/o8/id?id=AItOawlvmWVPaSpWJO5_rimCL0lEoJRoKOIjhHE2015-03-01
| |
* | When re-execing git-annex, use current program location, rather than ↵Gravatar Joey Hess2015-02-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ~/.config/git-annex/program, when possible. Most of the time, there will be no discreprancy between programPath and readProgramFile. But, the programFile might have been written by an old version of git-annex that is still installed, while a newer one is currently running. In this case, we want to run the same one that's currently running. This is especially important for things like the GIT_SSH=git-annex used for ssh connection caching. The only code that still uses readProgramFile directly is the upgrade code, which needs to know where the standalone git-annex was installed, in order to upgrade it.
* | make programPath return FilePath not Maybe FilePathGravatar Joey Hess2015-02-28
| | | | | | | | | | Looking at the few current callers, it's ok to have programPath throw an exception, in the unusual case where it cannot find git-annex.
| * Added a commentGravatar Régis2015-02-28
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawn9oPAaWcO-ZwHKOW1hQ0-8zG-KguSJln02015-02-28
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-27
| |
| * Added a commentGravatar Régis2015-02-27
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-27
|/
* followuGravatar Joey Hess2015-02-27
|
* think I found a way to support submodulesGravatar Joey Hess2015-02-27
|
* respinseGravatar Joey Hess2015-02-27
|
* responseGravatar Joey Hess2015-02-27
|
* sync: As well as the synced/git-annex push, attempt a git-annex:git-annex ↵Gravatar Joey Hess2015-02-27
| | | | | | | | | | | push, as long as the remote branch is an ancestor of the local branch, to better support bare git repos. See my comment in the bug report for analysis; basically this is safe because it's a non-forced push, so won't lose history. Even if it was a forced push or somehow races, things will eventually become consistent and no git-annex branch info will be lost. (This used to be done, but it forgot to do it since version 4.20130909.)
* (no commit message)Gravatar Régis2015-02-27
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2015-02-27
|\
* | move resourcet dependency out of S3 only; needed by database codeGravatar Joey Hess2015-02-27
| |
| * Added a commentGravatar BojanNikolic2015-02-27
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-27
| |
| * removedGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-27
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-27
| |
| * removedGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-27
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-27
| |
| * removedGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-26
| |
| * removedGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-26
| |
| * Added a commentGravatar https://id.koumbit.net/anarcat2015-02-26
| |
| * Added a commentGravatar https://id.koumbit.net/anarcat2015-02-26
| |
| * i think i figured out some weird bug... hopefully? :)Gravatar https://id.koumbit.net/anarcat2015-02-26
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-26
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-26
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-26
| |
| * Added a comment: Re: comment1Gravatar https://www.google.com/accounts/o8/id?id=AItOawnb2yfWzJ2lYQw1UTm6XVZ4y8qashNagZA2015-02-26
| |
| * Added a comment: Is the Mavericks build still beeing updated?Gravatar https://www.google.com/accounts/o8/id?id=AItOawk7iPiqWr3BVPLWEDvJhSSvcOqheLEbLNo2015-02-26
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawnbPKLjBONawBd74MKJZo05juCqdsP1jAU2015-02-26
| |