Easy and Fast Git rebase/reword -


i'm working alone on git repository months. i'd push commits public repository, however, i'd improve commit messages (mainly translate them english).

i know can git rebase -i reword each message. open editor each message want edit , that's long me (hundreds of commits reword). i'd rather able edit messages @ once , apply modifications.

i'm looking such tool allows me edit commit messages on single window , apply changes @ once in background. instance, have list of commit messages, double-click on message edit it, change another, go fix typo , when i'm done changes, apply them @ once.

you can pass script rewrite commit messages filter-branch:

git filter-branch -f --msg-filter "...script command here..." 

it should easy massage plain commit message output:

git log --pretty=tformat:%b 

into perl, python or sed script replaces corrected version.


Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -