Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | required: New command, like wanted, but for required content. | Joey Hess | 2015-04-18 |
| | | | | Also refactored some code to reduce duplication. | ||
* | contentlocationn: New plumbing command. | Joey Hess | 2015-04-09 |
| | |||
* | rethought distributed fsck; instead add activity.log and expire command | Joey Hess | 2015-04-05 |
| | | | | This is much more space efficient! | ||
* | WIP on making --quiet silence progress, and infra for concurrent progress bars | Joey Hess | 2015-04-03 |
| | |||
* | Various typo fixes in doc/*.mdwn | Øyvind A. Holm | 2015-04-02 |
| | |||
* | importfeed: Avoid downloading a redundant item from a feed whose guid has ↵ | Joey Hess | 2015-03-31 |
| | | | | | | | been downloaded before, even when the url has changed. To support this, always store itemid in metadata; before this was only done when annex.genmetadata was set. | ||
* | --auto is no longer a global option; only get, drop, and copy accept it. | Joey Hess | 2015-03-25 |
| | | | | Not a behavior change unless you were passing it to a command that ignored it. | ||
* | finished splitting out man pages for all commands | Joey Hess | 2015-03-25 |
| | |||
* | separated man pages for all the maintenance commands | Joey Hess | 2015-03-24 |
| | |||
* | separated man pages for all the setup commands while at the gate in ATL | Joey Hess | 2015-03-23 |
| | |||
* | Man pages for individual commands now available, and can be opened using ↵ | Joey Hess | 2015-03-23 |
| | | | | "git annex help <command>" | ||
* | splitting up the man page | Joey Hess | 2015-03-23 |
| | | | | | | | | Common command man pages all split out and often expanded. A few sections split out into their own pages. Still need to do all the other commands.. | ||
* | migrate: --force will force migration of keys already using the destination ↵ | Joey Hess | 2015-03-23 |
| | | | | backend. Useful in rare cases. | ||
* | Added a post-update-annex hook, which is run after the git-annex branch is ↵ | Joey Hess | 2015-03-20 |
| | | | | | | updated. Needed for git update-server-info. See https://github.com/datalad/datalad/issues/1#issuecomment-84094406 | ||
* | checkpresentkey: New plumbing command to check if a key can be verified to ↵ | Joey Hess | 2015-03-20 |
| | | | | be present on a remote. | ||
* | readpresentkey: New plumbing command for checking location log. | Joey Hess | 2015-03-20 |
| | |||
* | registerurl: New plumbing command for mass-adding urls to keys. | Joey Hess | 2015-03-15 |
| | |||
* | fromkey: Add stdin mode. | Joey Hess | 2015-03-15 |
| | |||
* | fromkey --force: Skip test that the key has its content in the annex. | Joey Hess | 2015-03-15 |
| | |||
* | addurl: Added --raw option, which bypasses special handling of quvi, ↵ | Joey Hess | 2015-03-05 |
| | | | | bittorrent etc urls. | ||
* | add a link | Joey Hess | 2015-02-25 |
| | |||
* | wording | Joey Hess | 2015-02-25 |
| | |||
* | The file matching options are now only accepted by commands that can ↵ | Joey Hess | 2015-02-06 |
| | | | | actually use them. | ||
* | import: Support file matching options such as --exclude, --include, ↵ | Joey Hess | 2015-02-06 |
| | | | | --smallerthan, --largerthan | ||
* | groupwanted: New command to set the groupwanted preferred content expression. | Joey Hess | 2015-02-06 |
| | |||
* | rework Differences data type | Joey Hess | 2015-01-28 |
| | | | | | | | | | | | | | | Eliminated complexity and future proofed. The most important change is that all functions over Difference are now total; any Difference that can be expressed should be handled. Avoids needs for sanity checking of inputs, and version skew with the future. Also, the difference.log now serializes a [Difference], not a Differences. This saves space and keeps it simpler. Note that [Difference] might contain conflicting differences (eg, [Version5, Version6]. In this case, one of them needs to consistently win over the others, probably based on Ord. | ||
* | Repository tuning parameters can now be passed when initializing a ↵ | Joey Hess | 2015-01-27 |
| | | | | | | | | | | repository for the first time. * init: Repository tuning parameters can now be passed when initializing a repository for the first time. For details, see http://git-annex.branchable.com/tuning/ * merge: Refuse to merge changes from a git-annex branch of a repo that has been tuned in incompatable ways. | ||
* | addurl: When a Content-Disposition header suggests a filename to use, addurl ↵ | Joey Hess | 2015-01-22 |
| | | | | will consider using it, if it's reasonable and doesn't conflict with an existing file. (--file overrides this) | ||
* | update my email address and homepage url | Joey Hess | 2015-01-21 |
| | |||
* | devblog | Joey Hess | 2015-01-13 |
| | |||
* | implemented old Richih wishlist about remote/uuid info | Joey Hess | 2015-01-13 |
| | | | | | | | | * info: Can now display info about a given uuid. * Added to remote/uuid info: Count of the number of keys present on the remote, and their size. This is rather expensive to calculate, so comes last and --fast will disable it. * Git remote info now includes the date of the last sync with the remote. | ||
* | setpresentkey: A new plumbing-level command. | Joey Hess | 2014-12-29 |
| | |||
* | sync: Now supports remote groups, the same way git remote update does. | Joey Hess | 2014-12-29 |
| | |||
* | Get rid of mysterious "_why_" | Jean Jordaan | 2014-12-20 |
| | |||
* | update for torrents | Joey Hess | 2014-12-18 |
| | |||
* | Added bittorrent special remote | Joey Hess | 2014-12-16 |
| | | | | | | | | | | addurl behavior change: When downloading an url ending in .torrent, it will download files from bittorrent, instead of the old behavior of adding the torrent file to the repository. Added Recommends on aria2 and bittornado | bittorrent. This commit was sponsored by Asbjørn Sloth Tønnesen. | ||
* | diffdriver: New git-annex command, to make git external diff drivers work ↵ | Joey Hess | 2014-11-24 |
| | | | | | | with annexed files. Closes https://github.com/datalad/datalad/issues/18 | ||
* | undo command | Joey Hess | 2014-11-14 |
| | | | | This commit was sponsored by Andrew Cant. | ||
* | proxy command is closer to plumbing than a general use command | Joey Hess | 2014-11-13 |
| | |||
* | proxy: for all your direct mode repository munging needs | Joey Hess | 2014-11-12 |
| | | | | | | | This allows bypassing the direct mode guard in a safe way to do all sorts of things including git revert, git mv, git checkout ... This commit was sponsored by the WikiMedia Foundation. | ||
* | add per-remote-type info | Joey Hess | 2014-10-21 |
| | | | | | | | | | | Now `git annex info $remote` shows info specific to the type of the remote, for example, it shows the rsync url. Remote types that support encryption or chunking also include that in their info. This commit was sponsored by Ævar Arnfjörð Bjarmason. | ||
* | info: When passed the name or uuid of a remote, displays info about that remote. | Joey Hess | 2014-10-21 |
| | | | | | | No per-remote-type info yet. This commit was sponsored by Stanley Yamane. | ||
* | info: When run on a single annexed file, displays some info about the file, ↵ | Joey Hess | 2014-10-21 |
| | | | | including its key and size. | ||
* | clarify that sync only commits changes to files already added to the repo | Joey Hess | 2014-09-18 |
| | |||
* | typo | Joey Hess | 2014-09-12 |
| | |||
* | New annex.hardlink setting. Closes: #758593 | Joey Hess | 2014-09-05 |
| | | | | | | | | | | * New annex.hardlink setting. Closes: #758593 * init: Automatically detect when a repository was cloned with --shared, and set annex.hardlink=true, as well as marking the repository as untrusted. Had to reorganize Logs.Trust a bit to avoid a cycle between it and Annex.Init. | ||
* | clarify that --all doesn't operate on a single file | Joey Hess | 2014-08-19 |
| | |||
* | doc/ minor typos/trailing whitespaces + extension on get options | Yaroslav Halchenko | 2014-08-19 |
| | |||
* | testremote --fast | Joey Hess | 2014-08-03 |
| | |||
* | testremote now tests with and without encryption | Joey Hess | 2014-08-01 |
| |