summaryrefslogtreecommitdiff
path: root/debian
Commit message (Collapse)AuthorAge
* releasing version 0.130.13Gravatar Joey Hess2010-12-14
|
* Support remotes using git+ssh and ssh+git as protocol. Closes: #607056Gravatar Joey Hess2010-12-14
|
* Support remotes using git+ssh:// as protocol. Closes: #607056Gravatar Joey Hess2010-12-14
|
* Fix upgrade from 0.03.Gravatar Joey Hess2010-12-13
|
* Makefile: Add GHCFLAGS variable.Gravatar Joey Hess2010-12-12
|
* Makefile: Add GHCOPTS variable.Gravatar Joey Hess2010-12-12
|
* Makefile: Install man page and html (when built).Gravatar Joey Hess2010-12-12
|
* releasing version 0.120.12Gravatar Joey Hess2010-12-11
|
* Makefile: Add PREFIX variable.Gravatar Joey Hess2010-12-11
|
* Bugfix to git annex add of an unlocked file in a subdir. Closes: #606579Gravatar Joey Hess2010-12-11
|
* mwdn2man: Fix a bug in newline supression. Closes: #606578Gravatar Joey Hess2010-12-10
|
* use Text.Regex.PCRE.Light.Char8 rather than Text.RegexpGravatar Joey Hess2010-12-08
| | | | | Text.Regexp does not think that á matches . -- seems to be a unicode problem.
* Add --exclude option to exclude files from processing.Gravatar Joey Hess2010-12-08
| | | | | Required some lifting so flags are evaled in the Annex monad before file filtering.
* releasing version 0.110.11Gravatar Joey Hess2010-12-04
|
* Add uninit subcommand. Closes: #605749Gravatar Joey Hess2010-12-03
|
* Improve detection of version 0 repos.Gravatar Joey Hess2010-12-02
|
* Avoid deleting temp files when rsync fails.Gravatar Joey Hess2010-12-02
|
* use rsync for all remote file transfersGravatar Joey Hess2010-12-02
|
* Rsync will now be used to resume interrupted/failed partial file transfers ↵Gravatar Joey Hess2010-12-02
| | | | from a remote.
* releasing version 0.100.10Gravatar Joey Hess2010-11-28
|
* The git-annex-backend attribute has been renamed to annex.backend.Gravatar Joey Hess2010-11-28
|
* change name of numcopies attributeGravatar Joey Hess2010-11-28
|
* clarifyGravatar Joey Hess2010-11-28
|
* missing \n in -q modeGravatar Joey Hess2010-11-28
|
* fsck: Fix warning about not enough copies of a file, when locations are ↵Gravatar Joey Hess2010-11-28
| | | | known, but are not available in currently configured remotes.
* Bugfix: Always correctly handle gitattributes when in a subdirectory of the ↵Gravatar Joey Hess2010-11-28
| | | | repository.
* In .gitattributes, the git-annex-numcopies attribute can be used to control ↵Gravatar Joey Hess2010-11-28
| | | | the number of copies to retain of different types of files.
* precommit: Optimise to avoid calling git-check-attr more than once.Gravatar Joey Hess2010-11-28
|
* releasing version 0.090.09Gravatar Joey Hess2010-11-27
|
* Fix bug in setkey subcommand triggered by move --to.Gravatar Joey Hess2010-11-27
|
* Add copy subcommand.Gravatar Joey Hess2010-11-27
|
* releasing version 0.080.08Gravatar Joey Hess2010-11-21
|
* add tests for uuid and xargs -0Gravatar Joey Hess2010-11-18
|
* typoGravatar Joey Hess2010-11-18
|
* Only use cp -a if it is supported, falling back to cp -p or plain cp.Gravatar Joey Hess2010-11-18
| | | | | * cp --reflink=auto is used if supported, and will make git annex unlock much faster on filesystems like btrfs that support copy of write.
* Add configure step to build process.Gravatar Joey Hess2010-11-18
| | | | | * configure: Check to see if cp -a can be used. * configure: Check to see if cp --reflink=auto can be used.
* Fix `git annex add ../foo` (when ran in a subdir of the repo).Gravatar Joey Hess2010-11-17
| | | | There was no reason for Git.relative to be used here.
* releasing version 0.070.07Gravatar Joey Hess2010-11-15
|
* fsck: Print warnings to stderr; --quiet can now be used to only see problems.Gravatar Joey Hess2010-11-15
|
* on dropunused and unusedGravatar Joey Hess2010-11-15
|
* dropunusedGravatar Joey Hess2010-11-15
|
* unused: New subcommand, finds unused data (the global part of fsck).Gravatar Joey Hess2010-11-15
|
* find: New subcommand.Gravatar Joey Hess2010-11-14
|
* releasing version 0.060.06Gravatar Joey Hess2010-11-13
|
* fsck improvementsGravatar Joey Hess2010-11-13
| | | | | | | | | * fsck: Check if annex.numcopies is satisfied. * fsck: Verify the sha1 of files when the SHA1 backend is used. * fsck: Verify the size of files when the WORM backend is used. * fsck: Allow specifying individual files to fsk if fscking everything is not desired. * fsck: Fix bug, introduced in 0.04, in detection of unused data.
* link to ghc bugGravatar Joey Hess2010-11-11
|
* releasing version 0.050.05Gravatar Joey Hess2010-11-11
|
* refactor param seekingGravatar Joey Hess2010-11-11
|
* rework command dispatching for add and pre-commitGravatar Joey Hess2010-11-11
| | | | | Both subcommands do two different operations on different sets of files, so allowing a subcommand to perform a list of operations cleans things up.
* Optimize both pre-commit and lock subcommands.Gravatar Joey Hess2010-11-11
| | | | | | | | isLocked was doing the expensive check before the cheap one. Let's not fork git diff twice per file when committing, especially. git diff is still run more than strictly necessary (ie, more than once) if multiple unlocked files are being committed. But much better now.