Joey Hess
16b05b7195
Merge branch 'master' of ssh://git-annex.branchable.com
2017-10-30 14:53:46 -04:00
Joey Hess
1e20b0e782
followup
2017-10-30 14:53:15 -04:00
Joey Hess
1adcad345a
close
2017-10-30 14:47:19 -04:00
Joey Hess
75ec0227f8
unlock, lock: Support --json.
2017-10-30 14:44:11 -04:00
yarikoptic
46b6b86b08
Added a comment: got it
2017-10-30 18:33:20 +00:00
Joey Hess
325c40afef
followup
2017-10-30 14:23:33 -04:00
Lykos153
856ed7ef76
Added a comment
2017-10-30 18:18:56 +00:00
Joey Hess
5d99094313
comment
2017-10-30 13:15:09 -04:00
Joey Hess
e2017b8adb
followup; close
2017-10-30 13:10:07 -04:00
Joey Hess
68a9c867be
Fix exporting of non-annexed files to external special remotes.
...
Actual problem is the keyName was set to "Ref \"sha\"", which led to
this follow-on failure since it contained a space.
The bad data would also get into the export database when exporting to a
non-external special remote. Looking briefly at that, I don't think the bad
data will lead to anything more than a re-upload of the file content
now that the problem has been fixed.
This commit was sponsored by Peter Hogg on Patreon.
2017-10-30 12:47:13 -04:00
Joey Hess
d0d1154497
remove unused value
...
felix's patch removed the user of home
2017-10-30 12:36:43 -04:00
Joey Hess
c7fe7760d1
typo fix
2017-10-30 12:28:44 -04:00
Joey Hess
0743ee1bbc
managed to repro
2017-10-30 12:26:49 -04:00
Joey Hess
fb9b4724ba
moreinfo
2017-10-30 12:19:33 -04:00
Joey Hess
81926f638e
responses
2017-10-30 12:10:39 -04:00
Joey Hess
24883e01cd
Fix export of subdir of a branch.
...
Seems I forgot to fully test that feature when documenting it.
git rev-parse needs a colon after a branch to de-reference the tree
it points to, rather than the commit. But that had it adding an extra
colon when the user specified "branch:subdir". So, check if there is a
colon before adding one.
This commit was sponsored by Francois Marier on Patreon.
2017-10-30 12:02:22 -04:00
Joey Hess
edafe8621e
comment
2017-10-30 11:51:22 -04:00
Lykos153
58179ad49a
2017-10-29 17:57:50 +00:00
ynikitenko
1f5d4766d6
Added a comment: thanks
2017-10-29 16:28:34 +00:00
Joey Hess
20b04a465f
remove custom-setup again until cabal issue is fixed
2017-10-27 14:35:03 -04:00
Joey Hess
d6573dab1d
this is the custom-setup I want
...
Unfortunately, cabal fails to parse this.
https://github.com/haskell/cabal/issues/4852
2017-10-27 14:20:58 -04:00
Joey Hess
b7be4e13c2
Merge branch 'master' of ssh://git-annex.branchable.com
2017-10-27 14:04:36 -04:00
Joey Hess
15f680d33b
try putting back custom-setup
...
will this build on doze?
2017-10-27 14:03:50 -04:00
ynikitenko
769c1d3d37
Added a comment: not so slow
2017-10-27 12:29:12 +00:00
Joey Hess
024b52a624
add news item for git-annex 6.20171026
2017-10-26 14:03:07 -04:00
Joey Hess
43d011a524
releasing package git-annex version 6.20171026
2017-10-26 14:02:40 -04:00
Joey Hess
d1d027ca10
better describe autobuild
2017-10-26 13:47:47 -04:00
Joey Hess
3d42168364
fix path
2017-10-26 13:42:54 -04:00
Joey Hess
d451d333d8
use upgraded stack
2017-10-26 12:15:00 -04:00
Joey Hess
c3449ff91d
finish fix for gitAnnexLink on windows
...
dropDrive needed since if splitPath splits out the drives, they would
appear different.
2017-10-26 12:01:16 -04:00
Joey Hess
932d4211a4
upgrade stack to avoid https://github.com/commercialhaskell/stack/issues/2960
2017-10-26 11:40:28 -04:00
Joey Hess
099ff702ea
improve cleanup
2017-10-26 11:34:14 -04:00
Joey Hess
6e202b8dc9
Revert "debugging strange old version of git-annex in windows installer bundle"
...
This reverts commit 1a338ed920
.
2017-10-26 11:32:04 -04:00
Joey Hess
1a338ed920
debugging strange old version of git-annex in windows installer bundle
2017-10-26 11:21:27 -04:00
Edward Betts
3a927a0345
correct spelling mistakes
...
A few spelling fixes for the git-annex devblog.
2017-10-26 10:51:17 -04:00
Joey Hess
50c0fb7336
unify stack build and stack install
...
For some reason, when stack install is run separately, it seems to be
installing a previous build from a different temp dir. WTF?
2017-10-26 10:10:02 -04:00
Joey Hess
c6fcbaf5b5
update win32 commit
2017-10-25 21:20:02 -04:00
Joey Hess
5aa9e2f4c0
devblog
2017-10-25 19:47:14 -04:00
Joey Hess
584dbfb892
terminateProcessId renamed
...
win32 upstream suggested a better name
2017-10-25 19:46:28 -04:00
Joey Hess
0ae2ac282e
fix gitAnnexLink to not be absolute on Windows
...
Windows: Fix reversion that caused the path used to link to annexed
content include the drive letter and full path, rather than being
relative. (`git annex fix` will fix up after this problem).
I've not identified the commit that brought the reversion (probably it
happened this spring when I was removing MisingH and last touched
Utility.Path). Likely commit 18b9a4b802
?
The problem is that relPathDirToFile got called two paths that had the
slashes different ways around. Since takeDrive includes the first slash,
this made two paths on the same drive seem different and it bailed.
(ifdefs around this to avoid doing extra work on non-windows)
This commit was sponsored by Jack Hill on Patreon.
2017-10-25 19:36:29 -04:00
Joey Hess
d428f66cdd
simplify build
2017-10-25 17:54:33 -04:00
Joey Hess
91cf80b8ec
fix fix
2017-10-25 17:28:05 -04:00
Joey Hess
c992c73843
add win32 to extra-dep
2017-10-25 17:25:52 -04:00
Joey Hess
96734ba350
allow building w/o rsync installed
...
rsync is needed to run, but may not be on the build machine; that's ok
2017-10-25 17:24:03 -04:00
Joey Hess
4a72b17bd0
bug
2017-10-25 15:57:08 -04:00
Joey Hess
b18e6997a1
update win32 to fixed version
2017-10-25 15:45:54 -04:00
Joey Hess
aa0388e37c
reply
2017-10-25 15:42:15 -04:00
Joey Hess
e8eacf96d5
Add day to metadata when annex.genmetadata is enabled.
...
Thanks, Sean T Parsons
2017-10-25 15:11:38 -04:00
Joey Hess
64f1c09526
stack.yaml: Added nix packages section.
...
Thanks, Sean T Parsons
2017-10-25 15:09:18 -04:00
Joey Hess
38c0e09de6
response
2017-10-25 15:04:55 -04:00