summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Added a commentGravatar http://johan.kiviniemi.name/2013-07-23
|
* removedGravatar http://johan.kiviniemi.name/2013-07-23
|
* Added a commentGravatar http://johan.kiviniemi.name/2013-07-23
|
* Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawkEHjHAWnJ0BJzdv_hePwU1my8X4wCseh82013-07-23
|
* Added a commentGravatar ringprince2013-07-23
|
* Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawm5WyknJirJJridJjiPNgrlYxGG9xrZBvA2013-07-23
|
* Support import in direct mode.Gravatar Joey Hess2013-07-22
|
* Added a commentGravatar http://joeyh.name/2013-07-22
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-22
|\
* | blog for the dayGravatar Joey Hess2013-07-22
| |
| * Added a commentGravatar http://joeyh.name/2013-07-22
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawkC_3Vry8U5x3FAvd5Jmazzl7FYvFAtDCU2013-07-22
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-22
|\
* | Support unannex and uninit in direct mode.Gravatar Joey Hess2013-07-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In direct mode, it's best to whenever possible not move direct mode files out of the way, and so I made unannex avoid touching the direct mode file at all. That actually turns out to be easy, because in direct mode, unlike indirect mode, the pre-commit hook won't get confused if the unannexed file later gets added back by git add. So there's no need to commit the unannex right away; it can be staged for the user to commit later. This also means that unannex in direct mode is a lot faster than in indirect mode! Another subtle bit is the bookkeeping that is done when unannexing a direct mode file. The inode cache needs to be removed so that when uninit runs getKeysPresent, it doesn't see the cache and think the key is still present and crash when it's not. This commit is sponsored by Douglas Butts. Thanks!
| * Added a commentGravatar http://joeyh.name/2013-07-22
| |
| * removedGravatar http://emk.myopenid.com/2013-07-22
| |
| * Added a comment: Interesting speedupGravatar http://emk.myopenid.com/2013-07-22
| |
| * Added a commentGravatar http://emk.myopenid.com/2013-07-22
| |
| * Added a comment: I will give recreating the bug a go in about 3 days time...Gravatar https://www.google.com/accounts/o8/id?id=AItOawnRai_qFYPVvEgC6i1nlM1bh-C__jbhqS02013-07-22
| |
| * Edit bug reportGravatar http://emk.myopenid.com/2013-07-22
| |
| * Initial bug reportGravatar http://emk.myopenid.com/2013-07-22
| |
* | closeGravatar Joey Hess2013-07-22
| |
| * Added a commentGravatar http://joeyh.name/2013-07-22
| |
* | For long hostnames, use a hash of the hostname to generate the socket file ↵Gravatar Joey Hess2013-07-22
| | | | | | | | | | | | | | | | | | | | | | for ssh connection caching. This is ok to do now that the socket filename never needs to be mapped back to a hostname. Short hostnames will still appear in the clear, which is less obfuscated. So this cannot possibly make ssh connection caching fail for a hostname it used to work for.
| * Added a commentGravatar http://joeyh.name/2013-07-22
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-22
|\|
* | remove unused pngsGravatar Joey Hess2013-07-22
| | | | | | | | | | Appreciate the gesture, but it's clutter, and I think I have sized icons for every other platform already, or can make some easily from the svg.
| * poll vote (Tahoe-LAFS)Gravatar 94.211.35.1492013-07-22
| |
* | Update icon for osx, include a bunch of sized png's for other platforms to useGravatar Jimmy Tang2013-07-22
|/
* (no commit message)Gravatar http://schnouki.net/2013-07-22
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-21
|\
* \ Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-21
|\ \
| | * Added a commentGravatar https://john-millikin.com/2013-07-22
| |/
| * removedGravatar https://john-millikin.com/2013-07-22
| |
| * Added a commentGravatar https://john-millikin.com/2013-07-22
| |
* | update android icons to use new version of logoGravatar Joey Hess2013-07-21
| |
| * Added a comment: The dreaded "ü"Gravatar https://launchpad.net/~mikapflueger2013-07-21
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw82013-07-21
| |
| * Added a comment: Darn it...Gravatar https://www.google.com/accounts/o8/id?id=AItOawnRai_qFYPVvEgC6i1nlM1bh-C__jbhqS02013-07-21
| |
| * Added a commentGravatar GLITTAH2013-07-21
| |
| * Added a comment: I'm having this problem tooGravatar https://www.google.com/accounts/o8/id?id=AItOawlutNrg7ajiNAfi5gqJfD8crv0aimZa27k2013-07-21
| |
| * Added a comment: seems to not involve utf8 at all..Gravatar http://joeyh.name/2013-07-21
| |
* | stop cached ssh connection w/o needing to look up host and portGravatar Joey Hess2013-07-21
| | | | | | | | | | | | | | | | Turns out that with -O stop -S socketfile, ssh does not need the real hostname, or port to be specificed. This is because it simply talks to the ssh behind the socket and tells it to stop. So, can eliminate the conversion back from a socketfile to host and port. Which will allow using shorter filenames for sockets in the future.
* | point to android icons tooGravatar Joey Hess2013-07-21
| |
| * Added a commentGravatar http://joeyh.name/2013-07-21
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawkEHjHAWnJ0BJzdv_hePwU1my8X4wCseh82013-07-21
| |
| * (no commit message)Gravatar ringprince2013-07-21
| |
| * Added a comment: git annex copy --to won't get them across either...Gravatar https://www.google.com/accounts/o8/id?id=AItOawnRai_qFYPVvEgC6i1nlM1bh-C__jbhqS02013-07-21
| |
| * Added a comment: Renaming filesGravatar https://www.google.com/accounts/o8/id?id=AItOawnRai_qFYPVvEgC6i1nlM1bh-C__jbhqS02013-07-21
| |
| * Git Annex stumbles and does not transfer files with special characters...Gravatar https://www.google.com/accounts/o8/id?id=AItOawnRai_qFYPVvEgC6i1nlM1bh-C__jbhqS02013-07-21
| |