Steve
7d3c372984
Added a comment: git repo is now up
2013-01-01 23:39:33 +00:00
Joey Hess
42e25f4893
fix layout
2013-01-01 15:34:42 -04:00
Joey Hess
47994ce5cd
direct mode by default in repositories created by assistant
2013-01-01 15:30:54 -04:00
Joey Hess
4008590c68
type based git config handling for remotes
...
Still a couple of places that use git config ad-hoc, but this is most of it
done.
2013-01-01 13:58:14 -04:00
https://www.google.com/accounts/o8/id?id=AItOawl9sYlePmv1xK-VvjBdN-5doOa_Xw-jH4U
5b1f10889d
Added a comment
2012-12-30 23:01:39 +00:00
https://me.yahoo.com/a/2grhJvAC049fJnvALDXek.6MRZMTlg--#eec89
9aafec516d
Added a comment: sizes has git-annex support
2012-12-30 22:47:42 +00:00
http://joeyh.name/
d710bff764
Added a comment
2012-12-30 04:19:51 +00:00
Joey Hess
16b2454680
Merge branch 'master' of ssh://git-annex.branchable.com
2012-12-30 00:06:17 -04:00
Joey Hess
7f7c31df1c
type based git config handling
...
Now there's a Config type, that's extracted from the git config at startup.
Note that laziness means that individual config values are only looked up
and parsed on demand, and so we get implicit memoization for all of them.
So this is not only prettier and more type safe, it optimises several
places that didn't have explicit memoization before. As well as getting rid
of the ugly explicit memoization code.
Not yet done for annex.<remote>.* configuration settings.
2012-12-29 23:10:18 -04:00
https://www.google.com/accounts/o8/id?id=AItOawmRFKwny4rArBaz-36xTcsJYqKIgdDaw5Q
98780b5d60
2012-12-30 01:26:03 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmRFKwny4rArBaz-36xTcsJYqKIgdDaw5Q
1ae2f9e639
2012-12-30 01:21:33 +00:00
Richard Hartmann
f30e7f5030
Typo and commas
2012-12-30 00:28:19 +01:00
Joey Hess
b62753c475
blog for the day
2012-12-29 18:36:41 -04:00
Joey Hess
92287f6905
ensure that direct mode file is not modified while generating its key
2012-12-29 15:32:29 -04:00
Joey Hess
c0ffa8f6f0
update
2012-12-29 15:23:11 -04:00
Joey Hess
ba636a803e
Merge branch 'master' of ssh://git-annex.branchable.com
2012-12-29 15:00:22 -04:00
Joey Hess
8cc27b8afc
avoid double commits with inotify when direct mode file is created
2012-12-29 14:58:13 -04:00
Joey Hess
e872c3f648
convert notBareRepo to a CommandCheck
...
This avoids some small overhead by only running the check once per command;
it also ensures that, even if the command doesn't find anything to run on,
it still fails to run when in a bare repo.
2012-12-29 14:45:19 -04:00
Joey Hess
e2788a5d15
document --autostart
2012-12-29 14:43:53 -04:00
Joey Hess
2ce736ac50
block all commands that don't work in direct mode
...
I left status working in direct mode, although it doesn't show correct
stats for known annex keys.
2012-12-29 14:28:19 -04:00
Joey Hess
9f2150c7d3
memoize parsing of annex.direct config setting
...
It occurs to me that all config settings should be parsed once at startup,
into a proper ADT, rather than all this ad-hoc parsing and memoization. One
day..
2012-12-29 13:37:11 -04:00
https://www.google.com/accounts/o8/id?id=AItOawkSq2FDpK2n66QRUxtqqdbyDuwgbQmUWus
774f2b41b7
Added a comment
2012-12-29 13:26:31 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnFhHPFP7j3wGNgBxEJoA8LcBJ4Xd1tTMY
d3b8bbd502
Added a comment: Release + Version Number
2012-12-29 11:16:05 +00:00
https://www.google.com/accounts/o8/id?id=AItOawln3ckqKx0x_xDZMYwa9Q1bn4I06oWjkog
9833cd8ac6
Added a comment
2012-12-29 08:00:57 +00:00
https://www.google.com/accounts/o8/id?id=AItOawm5iosFbL2By7UFeViqkc6v-hoAtqILeDA
4dba5af93d
Added a comment
2012-12-28 23:53:22 +00:00
http://phil.0x539.de/
ff1076e514
Added a comment
2012-12-28 23:23:29 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkBTVYS5lTecuenAB01eHgfUxE20vWVpU4
aa57b30c74
Added a comment: Large Mountain Loin package size
2012-12-28 22:17:44 +00:00
Joey Hess
3d57f0d356
blog for the day
2012-12-28 16:42:17 -04:00
Joey Hess
c0f9810f0b
OSX assistant: Uses direct mode by default when setting up a new local repository.
2012-12-28 16:42:11 -04:00
Joey Hess
561e317506
typo
2012-12-28 16:25:18 -04:00
Joey Hess
94d735c12a
fix fsevents rename handling
...
For both files and whole directories; also tested on moving whole dirs out
of and into the working copy.
2012-12-28 16:20:05 -04:00
Joey Hess
6e4ec17da4
ignore events generated by us in fsevents
...
This avoids some churn.
2012-12-28 16:05:33 -04:00
Joey Hess
75de4b8004
Merge branch 'master' of ssh://git-annex.branchable.com
2012-12-28 16:02:01 -04:00
Joey Hess
bf3270c5b7
add missing modifyHook for watcher
...
Needed for FSEvents, which calls that hook for modified files.
inotify seems to call the add hook, so I didn't notice it before.
2012-12-28 16:00:45 -04:00
Joey Hess
2fdefc656b
fix logic error breaking direct mode assistant autocommit of modified files
2012-12-28 16:00:19 -04:00
markus
3539cfe9a9
Added a comment: Great util!
2012-12-28 17:45:28 +00:00
http://joeyh.name/
c1df8eb398
Added a comment
2012-12-28 02:46:23 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkey8WuXUh_x5JC2c9_it1CYRnVTgdGu1M
f67afe5923
Added a comment: Linux Support
2012-12-27 21:37:47 +00:00
Joey Hess
ae2c04d248
blog for the day
2012-12-27 16:09:11 -04:00
Joey Hess
64664248b6
OSX no longer affected by kqueue bugs
2012-12-27 15:52:57 -04:00
Joey Hess
5d0356de67
typo
2012-12-27 15:49:32 -04:00
Joey Hess
ede34ec185
exclude closed bugs
2012-12-27 15:48:37 -04:00
Joey Hess
69247ebd28
startup scan for FSEvents
2012-12-27 15:46:37 -04:00
Joey Hess
bd31a9fbd1
fsevents bugfix for symlinks
2012-12-27 15:35:35 -04:00
Joey Hess
7af958d92c
OSX FSEvents support
...
Needs work to deal with directory renames better; otherwise seems to
basically work.
2012-12-27 15:22:29 -04:00
108.13.12.20
44665452a8
poll vote (Tahoe-LAFS)
2012-12-26 08:52:54 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmRFKwny4rArBaz-36xTcsJYqKIgdDaw5Q
e610c36276
sudo should not be used with homebrew
2012-12-26 01:34:47 +00:00
Joey Hess
811f88e942
Merge branch 'master' of ssh://git-annex.branchable.com
2012-12-25 16:22:23 -04:00
https://www.google.com/accounts/o8/id?id=AItOawltmUlf_zHb-hDkjLLYeUxyd81YVoIgZew
39fb971df0
Added a comment
2012-12-25 20:21:17 +00:00
Joey Hess
dde219dc95
update
2012-12-25 16:19:03 -04:00