Filtering commits after filtering the tree

5 messages, 3 authors, 2022-01-03 · open the first message on its own page

Filtering commits after filtering the tree

From: Ulrich Windl <hidden>
Date: 2021-12-29 09:51:16

Hi guys!


As  I know there are really smart ones around, please don't laugh how I helped myself with this problem:
https://stackoverflow.com/q/70505903/6607497
I'm sure you wouldn't have wasted hours with rebasing interactively...


Feel free to comment either on the list or at SO (comment or improved answer).


Regards,
Urich

Re: Filtering commits after filtering the tree

From: Son Luong Ngoc <hidden>
Date: 2021-12-30 13:20:03

Hi Ulrich,

On Thu, Dec 30, 2021 at 12:28 PM Ulrich Windl
[off-list ref] wrote:
Hi guys!


As  I know there are really smart ones around, please don't laugh how I helped myself with this problem:
https://stackoverflow.com/q/70505903/6607497
I'm sure you wouldn't have wasted hours with rebasing interactively...


Feel free to comment either on the list or at SO (comment or improved answer).
You probably want to try git-filter-repo (1)
while using `--message-callback` as documented in (2)

Regards,
Urich
Hope it helps,
Son Luong.

(1) https://github.com/newren/git-filter-repo
(2) https://htmlpreview.github.io/?https://github.com/newren/git-filter-repo/blob/docs/html/git-filter-repo.html#CALLBACKS

Re: [EXT] Re: Filtering commits after filtering the tree

From: Ulrich Windl <hidden>
Date: 2021-12-31 17:23:17

On 12/30/21 2:19 PM, Son Luong Ngoc wrote:
Hi Ulrich,

On Thu, Dec 30, 2021 at 12:28 PM Ulrich Windl
[off-list ref] wrote:
quoted
Hi guys!


As  I know there are really smart ones around, please don't laugh how I helped myself with this problem:
https://stackoverflow.com/q/70505903/6607497
I'm sure you wouldn't have wasted hours with rebasing interactively...


Feel free to comment either on the list or at SO (comment or improved answer).
You probably want to try git-filter-repo (1)
while using `--message-callback` as documented in (2)
Interestingly in SLES12 SP5 there is a message recommending 
git-filter-repo, but when I had tried "man git-filter-repo" there was no 
manual page. So I did not follow that path...
quoted

Regards,
Urich
Hope it helps,
Son Luong.

(1) https://github.com/newren/git-filter-repo
(2) https://htmlpreview.github.io/?https://github.com/newren/git-filter-repo/blob/docs/html/git-filter-repo.html#CALLBACKS

Re: Filtering commits after filtering the tree

From: Elijah Newren <hidden>
Date: 2021-12-31 23:48:33

On Fri, Dec 31, 2021 at 2:27 AM Son Luong Ngoc [off-list ref] wrote:
Hi Ulrich,

On Thu, Dec 30, 2021 at 12:28 PM Ulrich Windl
[off-list ref] wrote:
quoted
Hi guys!


As  I know there are really smart ones around, please don't laugh how I helped myself with this problem:
https://stackoverflow.com/q/70505903/6607497
I'm sure you wouldn't have wasted hours with rebasing interactively...


Feel free to comment either on the list or at SO (comment or improved answer).
You probably want to try git-filter-repo (1)
while using `--message-callback` as documented in (2)
In particular, you'd get most of the way there with a simple

   git filter-repo --path my-module/

That will remove all files not under my-module/ from the repository,
AND remove all commits that become empty due to removing all the other
files.


If you had commits which both touched my-module/ and also made
reference to other files outside of my-module/, then you may also want
to clean those up.  If that's something you can write code to do
(perhaps because the commit messages were regular, or you are an
expert at parsing and rewriting natural language programatically),
then the --message-callback suggested by Son could help you out.  That
sounds difficult to me, because I don't know how to even identify such
commits without having a human being read every single one.

But it sounded to me like most of the commit messages you didn't want
were ones that just touched paths outside of your selected module, in
which case the simple path filtering I suggested above would clear
those all out for you.

Antw: [EXT] Re: Filtering commits after filtering the tree

From: Ulrich Windl <hidden>
Date: 2022-01-03 09:26:25

quoted
quoted
Elijah Newren [off-list ref] schrieb am 01.01.2022 um 00:48 in Nachricht
[off-list ref]:
On Fri, Dec 31, 2021 at 2:27 AM Son Luong Ngoc [off-list ref] wrote:
quoted
Hi Ulrich,

On Thu, Dec 30, 2021 at 12:28 PM Ulrich Windl
[off-list ref] wrote:
quoted
Hi guys!


As  I know there are really smart ones around, please don't laugh how I 
helped myself with this problem:
quoted
quoted
https://stackoverflow.com/q/70505903/6607497 
I'm sure you wouldn't have wasted hours with rebasing interactively...


Feel free to comment either on the list or at SO (comment or improved 
answer).
quoted
You probably want to try git-filter-repo (1)
while using `--message-callback` as documented in (2)
In particular, you'd get most of the way there with a simple

   git filter-repo --path my-module/

That will remove all files not under my-module/ from the repository,
AND remove all commits that become empty due to removing all the other
files.


If you had commits which both touched my-module/ and also made
reference to other files outside of my-module/, then you may also want
to clean those up.  If that's something you can write code to do
(perhaps because the commit messages were regular, or you are an
expert at parsing and rewriting natural language programatically),
then the --message-callback suggested by Son could help you out.  That
sounds difficult to me, because I don't know how to even identify such
commits without having a human being read every single one.

But it sounded to me like most of the commit messages you didn't want
were ones that just touched paths outside of your selected module, in
which case the simple path filtering I suggested above would clear
those all out for you.
Yes, as I had a changelog type of file I had many commits describing changes in changelog that refer to files that are no longer part of the repository (commits for the files themselves had vanished already).
(I know changelogs are a bad idea)

I'll try your proposal next time. Writing custom Python filters is too much for me at the moment...

Thanks and kind Regards (and a happy new year),
Ulrich



Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help