Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | add StatFS.hsc, copied from xmobar | Joey Hess | 2011-03-22 |
| | |||
* | releasing version 0.201103200.20110320 | Joey Hess | 2011-03-20 |
| | |||
* | No longer auto-upgrade to repository format 2, to avoid accidental upgrades, ↵ | Joey Hess | 2011-03-19 |
| | | | | etc. Use git-annex upgrade when you're ready to run this version. | ||
* | Add version command to show git-annex version as well as repository version ↵ | Joey Hess | 2011-03-19 |
| | | | | information. | ||
* | Fix support for remotes with '.' in their names. | Joey Hess | 2011-03-18 |
| | |||
* | Fix dropping of files using the URL backend. | Joey Hess | 2011-03-17 |
| | |||
* | Merge branch 'master' into reorg | Joey Hess | 2011-03-16 |
|\ | | | | | | | | | Conflicts: debian/changelog | ||
| * | releasing version 0.240.24 | Joey Hess | 2011-03-16 |
| | | |||
* | | update | Joey Hess | 2011-03-16 |
| | | |||
* | | prepping experimental release | Joey Hess | 2011-03-16 |
| | | |||
* | | upgrade documentation | Joey Hess | 2011-03-16 |
| | | |||
* | | add explicit upgrade command | Joey Hess | 2011-03-16 |
| | | |||
* | | Merge branch 'master' into reorg | Joey Hess | 2011-03-16 |
|\| | | | | | | | | | Conflicts: debian/changelog | ||
| * | detect systems w/o utmensat and ifdef out code that needs it | Joey Hess | 2011-03-16 |
| | | |||
* | | improve upgrade | Joey Hess | 2011-03-16 |
| | | |||
* | | upgrades seem to fully work | Joey Hess | 2011-03-16 |
| | | |||
* | | v1 -> v2 upgrade partially working | Joey Hess | 2011-03-16 |
| | | | | | | | | still need to move location log files, and auto-commit | ||
* | | upgrade thoughts | Joey Hess | 2011-03-16 |
| | | | | | | | | long comments :) | ||
* | | update and bug closures for v2 layout | Joey Hess | 2011-03-16 |
| | | |||
* | | initial pass at doc update | Joey Hess | 2011-03-15 |
|/ | |||
* | symlink touching fun | Joey Hess | 2011-03-14 |
| | | | | | | | When adding files to the annex, the symlinks pointing at the annexed content are made to have the same mtime as the original file. While git does not preserve that information, this allows a tool like metastore to be used with annexed files. | ||
* | Add Suggests on graphviz. Closes: #618039 | Joey Hess | 2011-03-13 |
| | |||
* | Rethink filename encoding handling for display. Since filename encoding may ↵0.23 | Joey Hess | 2011-03-12 |
| | | | | or may not match locale settings, any attempt to decode filenames will fail for some files. So instead, do all output in binary mode. | ||
* | put in utf8 forcing workaround | Joey Hess | 2011-03-08 |
| | | | | | | | | | Haskell's IO layer crashes on characters > 255 when in a non-unicode (latin1) locale. Until Haskell gets better behavior, put in an admittedly ugly workaround for that: git-annex forces utf8 output mode no matter what locale is selected. So if you use a non-utf8 locale, your filenames with characters > 127 will not be displayed as you'd expect. But at least it won't crash. | ||
* | whereis: New subcommand to show where a file's content has gotten to. | Joey Hess | 2011-03-05 |
| | |||
* | Support ssh remotes with a port specified. | Joey Hess | 2011-03-05 |
| | |||
* | releasing version 0.220.22 | Joey Hess | 2011-03-04 |
| | |||
* | prep for release | Joey Hess | 2011-03-03 |
| | |||
* | Bugfix: When fsck detected and moved away corrupt file content, it did not ↵ | Joey Hess | 2011-03-03 |
| | | | | update the location log. | ||
* | support git funky remote syntaxes | Joey Hess | 2011-03-03 |
| | | | | | | * Look for dir.git directories the same as git does. * Support remote urls specified as relative paths. * Support non-ssh remote paths that contain tilde expansions. | ||
* | document describe command | Joey Hess | 2011-03-03 |
| | |||
* | fix up commands that are trouble on bare repos | Joey Hess | 2011-03-03 |
| | | | | | Most will just abort. init does a basic init and gives a command to run elsewhere to finish it. | ||
* | updates for bare repo support | Joey Hess | 2011-03-03 |
| | |||
* | fsck: Check for and repair location log damage. | Joey Hess | 2011-03-02 |
| | |||
* | New backends: SHA512 SHA384 SHA256 SHA224 | Joey Hess | 2011-03-01 |
| | |||
* | Support filenames that start with a dash; when such a file is passed to a ↵ | Joey Hess | 2011-02-25 |
| | | | | utility it will be escaped to avoid it being interpreted as an option. | ||
* | Make test suite not rely on a working cp -pr. | Joey Hess | 2011-02-13 |
| | | | | (The Unix wars are still ON!) | ||
* | heh | Joey Hess | 2011-02-13 |
| | |||
* | Fix test suite to reap zombies. | Joey Hess | 2011-02-13 |
| | | | | | | | | I had not taken into account that the code was written to run git and leave zombies, for performance/laziness reasons, when I wrote the test suite. So rather than the typical 1 zombie process that git-annex develops, test developed dozens. Caused problems on system with low process limits. Added a reap function to GitRepo, that waits for any zombie child processes. | ||
* | releasing version 0.210.21 | Joey Hess | 2011-02-11 |
| | |||
* | Fix display of unicode filenames. | Joey Hess | 2011-02-10 |
| | | | | | | | | | Internally, the filenames are stored as un-decoded unicode. I tried decoding them, but then haskell tries to access the wrong files. Hmm. So, I've unhappily chosen option "B", which is to decode filenames before they are displayed. | ||
* | test: Set git user name and email in case git can't guess values. | Joey Hess | 2011-02-09 |
| | |||
* | unannex: Fix recently introduced bug when attempting to unannex more than ↵ | Joey Hess | 2011-02-09 |
| | | | | one file at a time. | ||
* | test: Don't rely on chmod -R working. | Joey Hess | 2011-02-09 |
| | | | | Sometimes I wish I could give all my users a real OS. | ||
* | configure: Check for sha1sum.0.20 | Joey Hess | 2011-02-08 |
| | |||
* | Deal with the mtl/monads-fd conflict. | Joey Hess | 2011-02-08 |
| | |||
* | new map subcommand, basically working | Joey Hess | 2011-02-03 |
| | | | | | | | | | | | Still todo: - add repos from uuid.log that were not directly found - group repos into their respective hosts - display inaccessible repos and broken remote connections in red - anonymize the url display somewhat, so the maps can be shared - use uuid info to tell when two apparently different repos are actually the same repo accessed in different ways | ||
* | unannex: Commit staged changes at end | Joey Hess | 2011-02-01 |
| | | | | | to avoid some confusing behavior with the pre-commit hook, which would see some types of commits after an unannex as checking in of an unlocked file. | ||
* | cleanup last change | Joey Hess | 2011-01-31 |
| | |||
* | Preserve specified file ordering when instructed to act on multiple files or ↵ | Joey Hess | 2011-01-31 |
| | | | | directories. |