Hi,
I have been medling with TiddlyWiki5 now for a week or two and am liking it
allot thus far. And now I am trying to get TW to play along nicely with git
version control. I am pleasantly surprised how smooth it has been working
thus far, as the writer seems to do a nice job of making diff's work easier
than I would have expected from a xml-like data store. However it currently
still is a little bit more noisy than I would like, due to everything being
a tiddler.
Is there a way to specify which tiddlers should not be saved, regardless of
whether they were changed or not? Ideally is there a namespace for that? I
would have expected `$:/temp/` to behave that way, but alas it is also
written to disk.
In order to get a grip on what is changing I made myself this list tiddler:
```
!Volatile Systemsettings
<ul>
<$list filter="[is[system]prefix[$:/state/]]">
<div class="tc-menu-list-item">
<li><$button>
<$action-deletetiddler $tiddler={{!!title}}/>
Delete
</$button>
<$link to={{!!title}}><$view field="title"/></$link>
</li>
</div>
</$list>
</ul>
<ul>
<$list filter="[is[system]prefix[$:/temp/]!prefix[$:/temp/info-plugin]]">
<div class="tc-menu-list-item">
<li><$button>
<$action-deletetiddler $tiddler={{!!title}}/>
Delete
</$button>
<$link to={{!!title}}><$view field="title"/></$link>
</li>
</div>
</$list>
</ul>
<<list-links filter:"[is[system]prefix[$:/StoryList]]">>
<<list-links filter:"[is[system]prefix[$:/HistoryList]]">>
```
in which I can review those paths that I have observed to be changing
frequently on disk and optionally delete them. Mostly it has been settings
specifying which tab is selected in various places and I personally in most
cases dont care to version/sync that information, as I would considder this
a transient state.
Ideally I would like to blacklist/whitelist/filter what gets saved to disk
in a configurable way, so that my random commit count gets reduced.
Does anyone have experience with or even a solution to this?
Cheers
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.