假设主题:ABCD,有 4 个提交,echo commit 将一行添加到 a.txt。
A => add "aaa " > a.txt
B => add "bbb" >>a.txt
c => add "ccc" >>a.txt
D => add "ddd" >>a.txt
我的目标是:
如何在每次提交中删除 a.txt 第一行末尾的空格?
我不想在每次提交中手动修改它。有没有好的方法,例如:在 A 中手动修改,然后变基为 B,C,D ?
假设主题:ABCD,有 4 个提交,echo commit 将一行添加到 a.txt。
A => add "aaa " > a.txt
B => add "bbb" >>a.txt
c => add "ccc" >>a.txt
D => add "ddd" >>a.txt
我的目标是:
如何在每次提交中删除 a.txt 第一行末尾的空格?
我不想在每次提交中手动修改它。有没有好的方法,例如:在 A 中手动修改,然后变基为 B,C,D ?