* How to ensure a word has been removed from repository?
@ 2009-11-04 2:12 Patrick Higgins
2009-11-04 2:49 ` Nicolas Pitre
2009-11-04 3:35 ` Sitaram Chamarty
0 siblings, 2 replies; 3+ messages in thread
From: Patrick Higgins @ 2009-11-04 2:12 UTC (permalink / raw)
To: git
Hi all,
I just completed a series of filter-branch commands to remove a couple
of sensitive words from a repository before I publish it. The words
were found in commit messages, directory names, file contents, and
various other places (kind of weird, I know). I believe I have removed
them all, but I would like to double check but don't know how.
Given that much of the repository is stored in compressed packs, I
can't just use grep to look for the words. To get around this, I've
unpacked the objects, use a Perl script (filtinf example script) to
decompress them and then use grep (this has proven to be quite slow).
Is that going to find every possible occurrence if all the relevant
files are plain text?
Is there an easier way to search the repository? The way I'm doing it
has required some awfully deep knowledge to expire and prune
everything. I feel like I must be missing something.
Thanks,
Patrick
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: How to ensure a word has been removed from repository?
2009-11-04 2:12 How to ensure a word has been removed from repository? Patrick Higgins
@ 2009-11-04 2:49 ` Nicolas Pitre
2009-11-04 3:35 ` Sitaram Chamarty
1 sibling, 0 replies; 3+ messages in thread
From: Nicolas Pitre @ 2009-11-04 2:49 UTC (permalink / raw)
To: Patrick Higgins; +Cc: git
On Tue, 3 Nov 2009, Patrick Higgins wrote:
> Hi all,
>
> I just completed a series of filter-branch commands to remove a couple
> of sensitive words from a repository before I publish it. The words
> were found in commit messages, directory names, file contents, and
> various other places (kind of weird, I know). I believe I have removed
> them all, but I would like to double check but don't know how.
>
> Given that much of the repository is stored in compressed packs, I
> can't just use grep to look for the words. To get around this, I've
> unpacked the objects, use a Perl script (filtinf example script) to
> decompress them and then use grep (this has proven to be quite slow).
>
> Is that going to find every possible occurrence if all the relevant
> files are plain text?
>
> Is there an easier way to search the repository? The way I'm doing it
> has required some awfully deep knowledge to expire and prune
> everything. I feel like I must be missing something.
An easy way to look for the presence of a particular string in all the
repository data is:
git rev-list --all --objects | cut -c -40 | \
git cat-file --batch | grep <string>
Alternatively you can use:
git fast-export --all --signed-tag=verbatim | grep <string>
Nicolas
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: How to ensure a word has been removed from repository?
2009-11-04 2:12 How to ensure a word has been removed from repository? Patrick Higgins
2009-11-04 2:49 ` Nicolas Pitre
@ 2009-11-04 3:35 ` Sitaram Chamarty
1 sibling, 0 replies; 3+ messages in thread
From: Sitaram Chamarty @ 2009-11-04 3:35 UTC (permalink / raw)
To: Patrick Higgins; +Cc: git
On Wed, Nov 4, 2009 at 7:42 AM, Patrick Higgins
<patrick.allen.higgins@gmail.com> wrote:
> Given that much of the repository is stored in compressed packs, I
> can't just use grep to look for the words. To get around this, I've
> unpacked the objects, use a Perl script (filtinf example script) to
> decompress them and then use grep (this has proven to be quite slow).
> Is that going to find every possible occurrence if all the relevant
> files are plain text?
> Is there an easier way to search the repository? The way I'm doing it
> has required some awfully deep knowledge to expire and prune
> everything. I feel like I must be missing something.
Instead of expire and prune, I'd clone the repo to some other
location, and search in that clone. You'd still need the commands
that Nicolas gave in his reply but you wouldn't get any false
positivies from missing some reflog or something kept a ref alive.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-11-04 3:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-04 2:12 How to ensure a word has been removed from repository? Patrick Higgins
2009-11-04 2:49 ` Nicolas Pitre
2009-11-04 3:35 ` Sitaram Chamarty
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).