How can I reword the message of an old commit that is already pushed to a private remote?
I want to keep the time stamps and tags.
I found this command here:
git filter-branch -f --msg-filter
'sed "s/<old message>/<new message>/g"' -- --all
In order to keep the tags i added: --tag-name-filter cat
When executing the command git tells me: msg filter failed
The message I want to change is a merged-message "Merge branch 'release/...'" is this the problem?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…