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 2f4d4d1c45 basic json support
This includes a generic JSONStream library built on top of Text.JSON
(somewhat hackishly).

It would be possible to stream out a single json document describing
all actions, but it's probably better for consumers if they can expect
one json document per line, so I did it that way instead.

Output from external programs used for transferring files is not
currently hidden when outputting json, which probably makes it not very
useful there. This may be dealt with if there is demand for json
output for --get or --move to be parsable.

The version, status, and find subcommands have hand-crafted output and
don't do json. The whereis subcommand needs to be modified to produce
useful json.
2011-09-01 15:22:06 -04:00
Backend split groups of related functions out of Utility 2011-08-22 16:14:12 -04:00
Build moved files around 2011-08-20 16:11:42 -04:00
Command generalize quiet flag to output type 2011-09-01 13:35:07 -04:00
debian basic json support 2011-09-01 15:22:06 -04:00
doc basic json support 2011-09-01 15:22:06 -04:00
Git split groups of related functions out of Utility 2011-08-22 16:14:12 -04:00
Messages basic json support 2011-09-01 15:22:06 -04:00
Remote factor out firstM and anyM 2011-08-28 15:46:49 -04:00
Types hlint tweaks 2011-07-15 03:12:05 -04:00
Upgrade code simplification thanks to applicative functors 2011-08-25 01:27:19 -04:00
Utility basic json support 2011-09-01 15:22:06 -04:00
.gitattributes decruft 2011-06-22 18:56:08 -04:00
.gitignore split groups of related functions out of Utility 2011-08-22 16:14:12 -04:00
Annex.hs basic json support 2011-09-01 15:22:06 -04:00
AnnexQueue.hs split groups of related functions out of Utility 2011-08-22 16:14:12 -04:00
Backend.hs tweak 2011-08-30 13:23:21 -04:00
Branch.hs code simplification thanks to applicative functors 2011-08-25 01:27:19 -04:00
CHANGELOG
CmdLine.hs optimise initialized check 2011-08-17 18:38:26 -04:00
Command.hs code simplification thanks to applicative functors 2011-08-25 01:27:19 -04:00
Config.hs code simplification thanks to applicative functors 2011-08-25 01:27:19 -04:00
configure.hs moved files around 2011-08-20 16:11:42 -04:00
Content.hs generalize quiet flag to output type 2011-09-01 13:35:07 -04:00
Crypto.hs code simplification thanks to applicative functors 2011-08-25 01:27:19 -04:00
git-annex-shell.hs split groups of related functions out of Utility 2011-08-22 16:14:12 -04:00
git-annex.cabal releasing version 3.20110819 2011-08-19 20:38:36 -04:00
git-annex.hs renamed GitRepo to Git 2011-06-30 13:21:39 -04:00
git-union-merge.hs make gitDir absolute 2011-08-19 12:59:21 -04:00
Git.hs code simplification thanks to applicative functors 2011-08-25 01:27:19 -04:00
GitAnnex.hs Support the standard git -c name=value 2011-07-14 16:51:20 -04:00
GPL
Init.hs split groups of related functions out of Utility 2011-08-22 16:14:12 -04:00
INSTALL
LocationLog.hs code simplification thanks to applicative functors 2011-08-25 01:27:19 -04:00
Locations.hs finished hlint pass 2011-07-15 12:47:14 -04:00
Makefile guess not everyone configures their shell to show nonzero exit codes.. 2011-08-27 12:34:02 -04:00
mdwn2man
Messages.hs basic json support 2011-09-01 15:22:06 -04:00
Options.hs basic json support 2011-09-01 15:22:06 -04:00
PresenceLog.hs code simplification thanks to applicative functors 2011-08-25 01:27:19 -04:00
README add README 2011-05-13 19:20:54 -04:00
Remote.hs code simplification thanks to applicative functors 2011-08-25 01:27:19 -04:00
RemoteLog.hs code simplification thanks to applicative functors 2011-08-25 01:27:19 -04:00
Setup.hs cabal can now be used to build git-annex. 2011-06-30 14:55:03 -04:00
test.hs Set EMAIL when running test suite so that git does not need to be configured first. Closes: #638998 2011-08-23 13:41:32 -04:00
Trust.hs cache the trustmap 2011-06-23 21:25:39 -04:00
Types.hs rename modules for data types into Types/ directory 2011-06-01 21:56:04 -04:00
Upgrade.hs improve version checking for v3 2011-06-22 18:07:45 -04:00
Utility.hs factor out firstM and anyM 2011-08-28 15:46:49 -04:00
UUID.hs moved files around 2011-08-20 16:11:42 -04:00
Version.hs optimise initialized check 2011-08-17 18:38:26 -04:00

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/>