summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* updateGravatar Joey Hess2017-02-24
|
* updateGravatar Joey Hess2017-02-24
|
* typoGravatar Joey Hess2017-02-24
|
* updatesGravatar Joey Hess2017-02-24
|
* updateGravatar Joey Hess2017-02-24
|
* Tighten key parser to not accept keys containing a non-numeric fields, which ↵Gravatar Joey Hess2017-02-24
| | | | | | | | | could be used to embed data useful for a SHA1 attack against git. Also todo about why this is important, and with some further hardening to add. This commit was sponsored by Ignacio on Patreon.
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-02-23
|\
* | add paraGravatar Joey Hess2017-02-23
| |
| * Added a commentGravatar unicell@9c0b0afd4176d5933d4b5c41350ebe61488c1df02017-02-23
|/
* noCommit for PostReceiveGravatar Joey Hess2017-02-23
| | | | | | | | | | | | | | | This was noticed because it broke the datalad test suite, which pushed to the remote and then fetched to check if it had received the expected branches. Auto-init caused the git-annex branch on the remote to diverge, breaking that test. https://github.com/datalad/datalad/issues/1319#issuecomment-281649518 The auto-init still happens, it's staged in the journal, and will be commited by some later git-annex command when it runs. Which is fine, it's the same as that later command doing the auto-init. This commit was supported by the NSF-funded DataLad project
* slight correctionGravatar Joey Hess2017-02-23
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-02-23
|\
* | devblogGravatar Joey Hess2017-02-23
| |
| * Added a commentGravatar benjamin.poldrack@d09ccff6d42dd20277610b59867cf7462927b8e32017-02-22
| |
| * (no commit message)Gravatar lhunath@3b4ff15f4600f3276d1776a490b734fca0f5c2452017-02-22
| |
| * (no commit message)Gravatar jean.jordaan@4bb3bd508a9eb0a4bab5d1b587dadd2b6c4a7edc2017-02-22
| |
| * (no commit message)Gravatar jean.jordaan@4bb3bd508a9eb0a4bab5d1b587dadd2b6c4a7edc2017-02-22
| |
| * (no commit message)Gravatar db48x2017-02-22
|/
* remove Build/SysConfig.hs targetGravatar Joey Hess2017-02-21
| | | | | | | | | | | | | | | | | The problem with that target was, if a target like git-annex that depended on it failed for some reason, make would delete Build/SysConfig.hs, since it knows it's an intermediate file. But, since stack only builds that file once, that caused all subsequent make git-annex builds to fail. Also, this avoids a double stack build when building with stack. Since stack has no configure stage, and the Build/SysConfig.hs target was about running the configure stage, the only way to only build once is to combine the targets like this. This should work better on the autobuilders that build with stack. This commit was sponsored by NSF-funded DataLad project
* Added a commentGravatar benjamin.poldrack@d09ccff6d42dd20277610b59867cf7462927b8e32017-02-21
|
* status: Pass --ignore-submodules=when option on to git status.Gravatar Joey Hess2017-02-20
| | | | | | | Didn't make --ignore-submodules without a value be handled because I can't see a way to make optparse-applicative parse that. I've opened a bug requesting a way to do that: https://github.com/pcapriotti/optparse-applicative/issues/243
* questionGravatar Joey Hess2017-02-20
|
* make curl show http errors to stderrGravatar Joey Hess2017-02-20
| | | | | | | | | | | | | * Run curl with -S, so HTTP errors are displayed, even when it's otherwise silent. * When downloading in --json or --quiet mode, use curl in preference to wget, since curl is able to display only errors to stderr, unlike wget. This does mean that downloadQuiet is only silent on stdout, not necessarily on stderr, which affects a couple other calls of it. For example, downloading the .git/config of a http remote may show an error message now, perhaps with slightly suboptimal formatting due to other output.
* updateGravatar Joey Hess2017-02-20
|
* improve layoutGravatar Joey Hess2017-02-20
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-02-20
|\
* | Run wget with -nv instead of -q, so it will display HTTP errors.Gravatar Joey Hess2017-02-20
| | | | | | | | | | | | This adds one extra line of output when a download is successful, after the progress bar. I don't much like that, but wget does not provide a way to show HTTP errors without it.
| * removedGravatar benjamin.poldrack@d09ccff6d42dd20277610b59867cf7462927b8e32017-02-20
| |
| * Added a commentGravatar benjamin.poldrack@d09ccff6d42dd20277610b59867cf7462927b8e32017-02-20
| |
| * Added a commentGravatar benjamin.poldrack@d09ccff6d42dd20277610b59867cf7462927b8e32017-02-20
|/
* commentGravatar Joey Hess2017-02-20
|
* commentGravatar Joey Hess2017-02-20
|
* Added a comment: the problem filesGravatar andrew2017-02-20
|
* adjust: Fix behavior when used in a repository that contains submodules.Gravatar Joey Hess2017-02-20
| | | | | Also fixed the LsFiles parser to not assume its output has a fixed width type field.
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-02-20
|\
* | commentGravatar Joey Hess2017-02-20
| |
* | mention GIT_SSH_COMMANDGravatar Joey Hess2017-02-20
| |
* | commentGravatar Joey Hess2017-02-20
| |
* | commentGravatar Joey Hess2017-02-20
| |
* | removeGravatar Joey Hess2017-02-20
| | | | | | | | | | | | I've seen this thing, whatever it is, mentioned in spam links before, so even if it's valid for some OS (probably not the one being asked about), it's verboten here.
* | commentGravatar Joey Hess2017-02-20
| |
* | git-annex.cabal: Make crypto-api a dependency even when built w/o webapp and ↵Gravatar Joey Hess2017-02-20
| | | | | | | | | | | | | | | | test suite. The p2p code made it always be needed. This commit was sponsored by Anthony DeRobertis on Patreon.
* | commentGravatar Joey Hess2017-02-20
| |
* | commentGravatar Joey Hess2017-02-20
| |
| * (no commit message)Gravatar benjamin.poldrack@d09ccff6d42dd20277610b59867cf7462927b8e32017-02-20
| |
| * (no commit message)Gravatar benjamin.poldrack@d09ccff6d42dd20277610b59867cf7462927b8e32017-02-20
| |
| * Added a commentGravatar openmedi2017-02-19
| |
| * (no commit message)Gravatar m@2be305d83b52202ec4364229a836f463a67013362017-02-19
| |
| * (no commit message)Gravatar mhauru2017-02-19
| |
| * Added a commentGravatar openmedi2017-02-19
| |