summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | move --to: Better behavior when system is completely out of disk space; drop ↵Gravatar Joey Hess2016-06-05
| | | | | | | | | | | | | | | | content from disk before writing location log. I noticed move --to failing when there was no disk space. The file was sent to the remote, but it crashed before it could be dropped locally. This could fix that.
| * Added a commentGravatar xloem2016-06-05
| |
| * (no commit message)Gravatar xloem2016-06-05
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2016-06-04
|\
* | list: Do not include dead repositories.Gravatar Joey Hess2016-06-04
| |
| * (no commit message)Gravatar juh2016-06-04
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2016-06-03
|\|
| * Added a comment: A more detailed walkthroughGravatar matei.david@d6acba23dba331f26fc4756d01c7ab65cf3aee4d2016-06-03
| |
* | withAltRepo needs a separate queue of changesGravatar Joey Hess2016-06-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The queue could potentially contain changes from before withAltRepo, and get flushed inside the call, which would apply the changes to the modified repo. Or, changes could be queued in withAltRepo that were intended to affect the modified repo, but don't get flushed until later. I don't know of any cases where either happens, but better safe than sorry. Note that this affect withIndexFile, which is used in git-annex branch updates. So, it potentially makes things slower. Should not be by much; the overhead consists only of querying the current queue a couple of times, and potentially flushing changes queued within withAltRepo earlier, that could have maybe been bundled with other later changes. Notice in particular that the existing queue is not flushed when calling withAltRepo. So eg when git annex add needs to stage files in the index, it will still bundle them together efficiently.
* | better failure diagnosisGravatar Joey Hess2016-06-03
| |
* | Revert "removed"Gravatar Joey Hess2016-06-02
|/ | | | This reverts commit d9228740cf77624b5a74d04c07451f4ba5c79453.
* removedGravatar Fheedah666@a521babeb96f01d88b722c185e5bb8cac2f9e9462016-06-03
|
* devblogGravatar Joey Hess2016-06-02
|
* Fix initialization of a bare clone of a repo that has an adjusted branch ↵Gravatar Joey Hess2016-06-02
| | | | checked out.
* refactor isBareRepoGravatar Joey Hess2016-06-02
|
* fix man page buildingGravatar Joey Hess2016-06-02
|
* make LocalRepo a newtypeGravatar Joey Hess2016-06-02
|
* remotedaemon: Fixed support for notifications of changes to gcrypt remotes, ↵Gravatar Joey Hess2016-06-02
| | | | which was never tested and didn't quite work before.
* better avoid switching to direct mode in clone of adjusted branch repoGravatar Joey Hess2016-06-02
|
* fix git versionGravatar Joey Hess2016-06-02
|
* avoid switching to direct mode in clone of adjusted branch repoGravatar Joey Hess2016-06-02
|
* Automatically enable v6 mode when initializing in a clone from a repo that ↵Gravatar Joey Hess2016-06-02
| | | | | | | has an adjusted branch checked out. The clone also has the adjusted branch checked out, so it needs to be initialized to a version that supports that.
* Pass -S to git commit-tree when commit.gpgsign is set and when making a ↵Gravatar Joey Hess2016-06-02
| | | | non-automatic commit, in order to preserve current behavior when used with git 1.9, which has stopped doing this itself.
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2016-06-02
|\
| * Added a commentGravatar gernot2016-06-02
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2016-06-02
|\ \
| | * Added a commentGravatar Dilyin2016-06-02
| |/
* | sync --content: Fix bug that caused transfers of files to be made to a git ↵Gravatar Joey Hess2016-06-02
| | | | | | | | | | | | | | | | | | | | | | remote that does not have a UUID. This particularly impacted clones from gcrypt repositories. Added guard in Annex.Transfer to prevent this problem at a deeper level. I'm unhappy ith NoUUID, but having Maybe UUID instead wouldn't help either if nothing checked that there was a UUID. Since there legitimately need to be Remotes that do not have a UUID, I can't see a way to fix it at the type level, short making there be two separate types of Remotes.
* | updateGravatar Joey Hess2016-06-02
| |
* | analysisGravatar Joey Hess2016-06-02
| |
| * Added a comment: similar problemGravatar chris@f4ea67aa5ae4709d79959f782fcebb5edae9a79b2016-06-02
| |
| * fixed up done tagGravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-06-02
| |
* | minor typo fixes throughoutGravatar Yaroslav Halchenko2016-06-02
| | | | | | | | | | problematic flexibility
| * fixed typo and commented about replicationGravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-06-02
| |
| * (no commit message)Gravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-06-02
| |
* | todoGravatar Joey Hess2016-06-01
| |
| * (no commit message)Gravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-06-02
| |
| * Added a comment: Special remote's annex costGravatar Dilyin2016-06-01
| |
| * Added a comment: Retroactively annexGravatar Dilyin2016-06-01
| |
| * (no commit message)Gravatar grawity@2ea26be48562f66fcb9b66307da72b1e2e37453f2016-06-01
|/
* Remove Makefile from cabal tarball; man page building is now handled by a ↵Gravatar Joey Hess2016-05-31
| | | | | | | | small haskell program. This actually runs faster than building the man pages from the makefile did. But the main purpose is to let Setup.hs import Build.Mans and so not need the makefile.
* Added a commentGravatar felixonmars@643c7c1f0bf9bace16d293d69b51419f012234d12016-05-31
|
* responseGravatar Joey Hess2016-05-31
|
* followupGravatar Joey Hess2016-05-31
|
* responseGravatar Joey Hess2016-05-31
|
* responseGravatar Joey Hess2016-05-31
|
* responseGravatar Joey Hess2016-05-31
|
* Added a comment: subdirectories above FILEKEY directoryGravatar uwe.nagler@9f80ad68e498fcdb09e20b17ff4539f94ef73ea92016-05-31
|
* (no commit message)Gravatar gernot2016-05-29
|
* Added a commentGravatar xloem2016-05-29
|