aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Added a comment: git-annex support droppedGravatar spalax@b201acef21dca7798b874036bbbaa9e0079a0b7e2017-06-27
|
* (no commit message)Gravatar https://launchpad.net/~barthelemy2017-06-27
|
* fsck: Support --json.Gravatar Joey Hess2017-06-26
| | | | | | | One use case is to get a list of files that fsck fails on, in order to eg, drop them from a remote. This commit was sponsored by Nick Daly on Patreon.
* followupGravatar Joey Hess2017-06-26
|
* responseGravatar Joey Hess2017-06-26
|
* followupGravatar Joey Hess2017-06-26
|
* followupGravatar Joey Hess2017-06-26
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-06-26
|\
| * (no commit message)Gravatar http://schnouki.net/2017-06-23
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-06-22
|\|
| * Added a commentGravatar olaf2017-06-22
| |
| * Added a commentGravatar olaf2017-06-22
| |
| * (no commit message)Gravatar https://launchpad.net/~felixonmars2017-06-19
| |
| * removedGravatar unqueued2017-06-19
| |
| * Added a commentGravatar unqueued2017-06-18
| |
* | remove reference to some old docker image of mineGravatar Joey Hess2017-06-18
| |
* | update, removing notes about by now quite old ubuntu releasesGravatar Joey Hess2017-06-18
| |
* | update for debian releaseGravatar Joey Hess2017-06-18
|/
* fix failing quickcheck propertiesGravatar Joey Hess2017-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | QuickCheck 2.10 found a counterexample eg "\929184" broke the property. As far as I can tell, Git.Filename is matching how git handles encoding of strange high unicode characters in filenames for display. Git does not display high unicode characters, and instead displays the C-style escaped form of each byte. This is ambiguous, but since git is not unicode aware, it doesn't need to roundtrip parse it. So, making Git.FileName's roundtrip test only chars < 256 seems fine. Utility.Format.format uses encode_c, in order to mimic git, so that's ok. Utility.Format.gen uses decode_c, but only so that stuff like "\n" in the format string is handled. If the format string contains C-style octal escapes, they will be converted to ascii characters, and not combined into unicode characters, but that should not be a problem. If the user wants unicode characters, they can include them in the format string, without escaping them. Finally, decode_c is used by Utility.Gpg.secretKeys, because gpg --with-colons hex-escapes some characters in particular ':' and '\\'. gpg passes unicode through, so this use of decode_c is not a problem. This commit was sponsored by Henrik Riomar on Patreon.
* closeGravatar Joey Hess2017-06-17
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-06-17
|\
* | Fix build with QuickCheck 2.10.Gravatar Joey Hess2017-06-17
| | | | | | | | | | | | | | | | QuickCheck added an Arbitrary instance for CTime aka EpochTime. However, while git-annex's instance disallowed times before the epoch, QuickCheck's does not. So, rather than using its instance, convert from an Integer. This commit was sponsored by Thomas Hochstein on Patreon.
| * (no commit message)Gravatar ilovezfs2017-06-17
|/
* Added a commentGravatar avar2017-06-16
|
* (no commit message)Gravatar memeplex2017-06-16
|
* Added a commentGravatar t.z.mates2017-06-15
|
* Added a comment: Error messages changedGravatar t.z.mates2017-06-15
|
* A wishlist item I would likeGravatar glasserc2017-06-14
|
* (no commit message)Gravatar interfect@b151490178830f44348aa57b77ad58c7d18e8fe72017-06-14
|
* add news item for git-annex 6.20170520Gravatar Joey Hess2017-06-12
|
* releasing package git-annex version 6.201705206.20170520Gravatar Joey Hess2017-06-12
|
* Added a comment: remote.logGravatar user42017-06-11
|
* (no commit message)Gravatar user42017-06-11
|
* devblogGravatar Joey Hess2017-06-09
|
* fix OSX buildGravatar Joey Hess2017-06-09
|
* disable closingTracked on OSXGravatar Joey Hess2017-06-09
| | | | | | | | Don't trust OSX FSEvents's eventFlagItemModified to be called when the last writer of a file closes it; apparently that sometimes does not happen, which prevented files from being quickly added. This commit was sponsored by John Peloquin on Patreon.
* commentGravatar Joey Hess2017-06-09
|
* close as dupGravatar Joey Hess2017-06-09
|
* followupGravatar Joey Hess2017-06-09
|
* followupGravatar Joey Hess2017-06-09
|
* followupGravatar Joey Hess2017-06-09
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-06-09
|\
* | zsh and fish completionsGravatar Joey Hess2017-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | optparse-applicative-0.14.0.0 adds support for these, so have the Makefile install their scripts when built with it. CmdLine/GitAnnex/Options.hs now uses action "file" in cmdParams, which affects the bash and zsh completions, letting them complete filenames for subcommands that use that. This is not needed for bash, since bash-completion.bash enables -o bashdefault, which lets it complete filenames too. But it does not seem to break the bash completions. It is needed for zsh; the zsh completion otherwise does not complete filenames. The fish completion will always complete filenames no matter what. Messy. This commit was sponsored by Denis Dzyubenko on Patreon.
* | update from optparse-applicative outputGravatar Joey Hess2017-06-09
| | | | | | | | | | Fix local to use right case, and merge in IFS setting from a more recent version of optparse-applicative.
| * Added a commentGravatar interfect@b151490178830f44348aa57b77ad58c7d18e8fe72017-06-09
| |
| * Added a commentGravatar interfect@b151490178830f44348aa57b77ad58c7d18e8fe72017-06-09
| |
| * Added a commentGravatar jeff2017-06-07
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-06-07
|\
* | assistant: Merge changes from refs/remotes/foo/master into master.Gravatar Joey Hess2017-06-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, only sync branches were merged. This makes regular git push into a repository watched by the assistant auto-merge. While this does hardcode an assumption about what the remote tracking branch is named, which some unusual git configurations won't match, git-annex sync already made the same assumption. Also, changed behavior when a tracking branch like refs/remotes/synced/not/master is received. When on the master branch, that used to get merged into it, but it's the tracking branch for not/master, so should only be merged in when on the not/master branch. This commit was sponsored by Ewen McNeill.
| * Added a comment: Workaround for switching repos from WebAppGravatar ano.nymous@12ebd53e5933cd1730c84027a7cb905e7c3fdd9c2017-06-07
| |