CI to automate build of cargo lockfiles on different Alpine releases for git-annex aports https://gitlab.alpinelinux.org/alpine/aports/-/tree/master/community/git-annex
Find a file
Joey Hess c784ef4586 unify exception handling into Utility.Exception
Removed old extensible-exceptions, only needed for very old ghc.

Made webdav use Utility.Exception, to work after some changes in DAV's
exception handling.

Removed Annex.Exception. Mostly this was trivial, but note that
tryAnnex is replaced with tryNonAsync and catchAnnex replaced with
catchNonAsync. In theory that could be a behavior change, since the former
caught all exceptions, and the latter don't catch async exceptions.

However, in practice, nothing in the Annex monad uses async exceptions.
Grepping for throwTo and killThread only find stuff in the assistant,
which does not seem related.

Command.Add.undo is changed to accept a SomeException, and things
that use it for rollback now catch non-async exceptions, rather than
only IOExceptions.
2014-08-07 22:03:29 -04:00
Annex unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Assistant unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Backend testremote: New command to test uploads/downloads to a remote. 2014-08-01 15:10:01 -04:00
Build move git-annex to git/cmd 2014-07-16 18:12:05 -04:00
CmdLine unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Command unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Common
Config
debian unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
doc convert WebDAV to new special remote interface, adding new-style chunking support 2014-08-06 16:57:06 -04:00
Git unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Limit
Logs unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Messages
Remote unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
RemoteDaemon unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
standalone provide utf-8 locale to avoid silly build failure 2014-07-14 21:18:24 -04:00
static
templates better fix for modal 2014-07-14 17:45:21 -04:00
Types pushed checkPresent exception handling out of Remote implementations 2014-08-06 13:45:19 -04:00
Upgrade add chunk metadata to Key 2014-07-24 13:36:23 -04:00
Utility unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
.ghci
.gitattributes
.gitignore
.mailmap
Annex.hs unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Assistant.hs missing lift 2014-07-16 16:14:51 -04:00
Backend.hs only chunk stable keys 2014-07-30 10:34:39 -04:00
build.bat
BuildFlags.hs
CHANGELOG
Checks.hs
CmdLine.hs
Command.hs
Common.hs unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Config.hs
configure.hs
COPYRIGHT
Creds.hs
Crypto.hs unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
ghci
git-annex.cabal unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
git-annex.hs
git-union-merge.hs
Git.hs
INSTALL
Limit.hs unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Locations.hs use same hash directories for chunked key as are used for its parent 2014-07-25 16:09:23 -04:00
Logs.hs implement chunk logs 2014-07-24 16:23:36 -04:00
Makefile
Messages.hs unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
NEWS
README
Remote.hs unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Setup.hs
Test.hs unify exception handling into Utility.Exception 2014-08-07 22:03:29 -04:00
Types.hs
Upgrade.hs

git-annex allows managing files with git, without checking the file
contents into git. While that may seem paradoxical, it is useful when
dealing with files larger than git can currently easily handle, whether due
to limitations in memory, checksumming time, or disk space.

For documentation, see doc/ or <http://git-annex.branchable.com/>