summaryrefslogtreecommitdiff
path: root/debian
Commit message (Collapse)AuthorAge
* prep releaseGravatar Joey Hess2016-04-12
|
* Fix bug in annex.largefiles mimetype= matching when git-annex is run in a ↵Gravatar Joey Hess2016-04-12
| | | | subdirectory of the repository.
* hard links on windowsGravatar Joey Hess2016-04-08
| | | | | * annex.thin and annex.hardlink are now supported on Windows. * unannex --fast now makes hard links on Windows.
* sync: Show output of git commit.Gravatar Joey Hess2016-04-05
| | | | | | Rationalle: User might have hook scripts whose output they want to see. Also, git commit output may tell the user they forgot to add a file. The output is not too ugly when there's nothing to commit.
* v6: Close pointer file handles more quickly, to avoid problems on Windows.Gravatar Joey Hess2016-04-04
| | | | | | Was using L.readFile, so the Handle would remain open until the garbage collector got around to it. Changed to explicit open and close, so we know it's always closed when the function returns.
* Upgrading a direct mode repository to v6 has changed to enter an adjusted ↵Gravatar Joey Hess2016-04-04
| | | | | | | | unlocked branch. This makes the direct mode to v6 upgrade able to be performed in one clone of a repository without affecting other clones, which can continue using v5 and direct mode.
* Merge branch 'adjustedbranch'Gravatar Joey Hess2016-03-31
|\
* | log --raw-date: Use to display seconds from unix epoch.Gravatar Joey Hess2016-03-29
| |
* | log: Display time with time zone.Gravatar Joey Hess2016-03-29
| | | | | | | | Also cleaned up ugliness with zombies.
| * init: Automatically enter the adjusted unlocked branch when in a v6 repo on ↵Gravatar Joey Hess2016-03-29
| | | | | | | | a filesystem not supporting symlinks.
| * docs for git-annex adjustGravatar Joey Hess2016-03-29
|/
* changelogGravatar Joey Hess2016-03-23
|
* fix typoGravatar Joey Hess2016-03-21
|
* prep releaseGravatar Joey Hess2016-03-18
|
* well, that broke the i386ancient autobuilder. revertGravatar Joey Hess2016-03-17
|
* Fix build with stack 0.1.6 which needs explicit-setup-deps.Gravatar Joey Hess2016-03-17
|
* typoGravatar Joey Hess2016-03-14
|
* Sped up git-annex merge by using git hash-object --batch.Gravatar Joey Hess2016-03-14
| | | | | | | This does mean that it has to write out temp files containing updated objects for the merge. So may use more disk space, and disk IO, but that should generally win out over needing to launch N separate git hash-object processes.
* Sped up git-annex add in direct mode and v6 by using git hash-object --batch.Gravatar Joey Hess2016-03-14
| | | | Speeds up hashSymlink and hashPointerFile.
* Correct git-annex info to include unlocked files in v6 repository.Gravatar Joey Hess2016-03-14
| | | | | | | | | | | An unlocked present file does not have a pointer file in the worktree, so info skipped counting it. It may be that unused was also affected by the problem, but it seemed not to be in my tests. I think because of the use of the associatedFilesFilter. This fix slows down both info and unused a little bit, since they have to query the contents of files from git, but only when handling unlocked files.
* Bump standards versionGravatar Richard Hartmann2016-03-12
| | | | (cherry picked from commit 6efa2492bb0c34279f535e79228016555bdb915c)
* Always try to thaw content, even when annex.crippledfilesystem is set.Gravatar Joey Hess2016-03-09
|
* adjust architecture listsGravatar Joey Hess2016-03-09
|
* Fix OSX dmg to include libraries needed by bundled gpg, lost in last release.Gravatar Joey Hess2016-03-07
|
* dropkey --jsonGravatar Joey Hess2016-03-06
|
* dropkey: Add --batch.Gravatar Joey Hess2016-03-06
|
* add new depsGravatar Joey Hess2016-03-05
|
* changelogGravatar Joey Hess2016-03-05
|
* Merge branch 'no-cbits'Gravatar Joey Hess2016-03-05
|\
* | Fix metadata hook behavior when multiple files are added at once. Thanks, ↵Gravatar Joey Hess2016-03-02
| | | | | | | | Klaus Ethgen.
* | Fix shared lock file FD leak.Gravatar Joey Hess2016-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes behavior in this situation: l1 <- lockShared Nothing "lck" l2 <- lockShared Nothing "lck" dropLock l1 dropLock l2 Before, the lock was dropped upon the second dropLock call, but the fd remained open, and would never be closed while the program was running. Fixed by a rather round-about method, but it should work well enough. It would have been simpler to open open the shared lock once, and not open it again in the second call to lockShared. But, that's difficult to do atomically. This also affects Windows and PID locks, not just posix locks. In the case of pid locks, multiple calls to waitLock within the same process are allowed because the side lock is locked using a posix lock, and so multiple exclusive locks can be taken in the same process. So, this change fixes a similar problem with pid locks. l1 <- waitLock (Seconds 1) "lck" l2 <- waitLock (Seconds 1) "lck" dropLock l1 dropLock l2 Here the l2 side lock fd remained open but not locked, although the pid lock file was removed. After this change, the second dropLock will close both fds to the side lock, and delete the pidlock.
* | Fix bug preventing moving files to/from a repository with annex.pidlock set.Gravatar Joey Hess2016-03-01
| |
* | Fix data loss that can occur when annex.pidlock is set in a repository.Gravatar Joey Hess2016-03-01
| |
* | metadata: Added -r to remove all current values of a field.Gravatar Joey Hess2016-02-29
| |
* | leap year release6.20160229Gravatar Joey Hess2016-02-29
| |
* | The pre-commit-annex hook script that automatically extracts metadata has ↵Gravatar Joey Hess2016-02-28
| | | | | | | | been updated to also use exiftool. Thanks, Klaus Ethgen.
* | Support --metadata field<number, --metadata field>number etc to match ranges ↵Gravatar Joey Hess2016-02-27
| | | | | | | | | | | | | | of numeric values. Similarly (well, for free), support preferred content expressions like metadata=field<number and metadata=field>number
* | close bug and changelogGravatar Joey Hess2016-02-26
| | | | | | | | finished testing recent commits, and I did solve it
* | Include magic database in the linux and OSX standalone builds.Gravatar Joey Hess2016-02-26
| |
* | Avoid crashing when built with MagicMime support, but when the magic ↵Gravatar Joey Hess2016-02-23
| | | | | | | | database cannot be loaded.
* | Linux and OSX standalone builds put the bundled gpg last in PATH, so any ↵Gravatar Joey Hess2016-02-19
| | | | | | | | system gpg will be preferred over it.
* | info: Mention when run in a dead repository.Gravatar Joey Hess2016-02-19
| |
* | fsck: When the only copy of a file is in a dead repository, mention the ↵Gravatar Joey Hess2016-02-19
| | | | | | | | repository.
* | Fix memory leak in last release, which affected commands like git-annex ↵Gravatar Joey Hess2016-02-19
| | | | | | | | | | | | | | status when a large non-annexed file is present in the work tree. The whole file was strictly read, and so buffered in memory, and remained buffered for some time when running git-annex status.
* | Update perlmagick build dependency. Closes: #789225Gravatar Joey Hess2016-02-18
| |
* | prep release6.20160217Gravatar Joey Hess2016-02-17
| |
* | annex.addunlockedGravatar Joey Hess2016-02-16
| | | | | | | | | | | | | | * add, addurl, import, importfeed: When in a v6 repository on a crippled filesystem, add files unlocked. * annex.addunlocked: New configuration setting, makes files always be added unlocked. (v6 only)
* | Windows: Fix v6 unlocked files to actually work.Gravatar Joey Hess2016-02-15
| | | | | | | | | | Pointer files were not being treated as annex content, so "git annex get" didn't replace them with the object.
* | When initializing a v6 repo on a crippled filesystem, don't force it into ↵Gravatar Joey Hess2016-02-15
| | | | | | | | direct mode.
| * remove Utility.Mounts et al; moved to mountpoints packageGravatar Joey Hess2016-02-15
|/