Re: Question about git filter-branch with signed commits

2015-07-25 Thread Adam Liter
I'm trying to clean up the commit history of a git repository by removing certain files. The repository contains signed commits, and when I try to use git filter-branch, the PGP signature is converted to the first line of the commit message. It should be possible to craft a filter that remove

Re: Question about git filter-branch with signed commits

2015-07-25 Thread Jacob Keller
On Sat, Jul 25, 2015 at 1:17 PM, Adam Liter wrote: > Hello, > > I'm trying to clean up the commit history of a git repository by removing > certain files. The repository contains signed commits, and when I try to use > git filter-branch, the PGP signature is converted to the first line of the > co

Question about git filter-branch with signed commits

2015-07-25 Thread Adam Liter
Hello, I'm trying to clean up the commit history of a git repository by removing certain files. The repository contains signed commits, and when I try to use git filter-branch, the PGP signature is converted to the first line of the commit message. Is this the expected behavior? If so, is th