From: Johannes Sixt <j.sixt@viscovery.net>
To: Sergio Callegari <sergio.callegari@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: Question about --tree-filter
Date: Wed, 04 Feb 2009 17:37:11 +0100 [thread overview]
Message-ID: <4989C437.4070401@viscovery.net> (raw)
In-Reply-To: <loom.20090204T155824-858@post.gmane.org>
Sergio Callegari schrieb:
> in working with the "rezip" filter for the efficient git management of
> openoffice, zip and docx files, I am encountering the following problem.
>
> Suppose that you have an existing repository and that you want to convert it
> into a repository using the rezip filters: git filter-branch should be the tool
> to do the conversion.
>
> Initially I believed that once set up the appropriate .git/config filter entries
> and a .git/info/attributes file tying the filter to the appropriate file types,
> it would have been enough to
>
> git filter-branch --tree-filter true tag-name-filter cat
>
> to do the conversion.
> This is also what I suggested in my original post about the rezip script.
>
> Unfortunately, this does not seem to work as expected. Not all files get
> rewritten as filtered blobs.
Before the tree-filter runs, the files are checked out (and smudged by
rezip). But they are marked as unchanged (because they were checked out
moments ago). Since your tree-filter doesn't do anything, no new blobs are
added to the index, and none of your files are cleaned by rezip.
I think your brute-force tree-filter should be
rm -f "$GIT_INDEX_FILE"
assuming that a .gitattributes file is already in all revisions.
-- Hannes
next prev parent reply other threads:[~2009-02-04 17:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-04 16:08 Question about --tree-filter Sergio Callegari
2009-02-04 16:37 ` Johannes Sixt [this message]
2009-02-04 20:42 ` Sergio Callegari
2009-02-05 8:32 ` Johannes Sixt
2009-02-05 13:13 ` Sergio Callegari
2009-02-05 13:57 ` Johannes Sixt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4989C437.4070401@viscovery.net \
--to=j.sixt@viscovery.net \
--cc=git@vger.kernel.org \
--cc=sergio.callegari@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.