This tool really helped when I was migrating code across repositories. Thanks a lot!
Quickly rewrite Git repository history
11–15 of 15 posts
Re: Quickly rewrite Git repository history
#12I'm not a git user (it's true, I'm not a professional dev and use fossil for my pet projects) so honest question: why would you want to rewrite your history?
- Because you want to restructure the project for the whole history, prior to merging several projects.
Re: Quickly rewrite Git repository history
#13I'm not a git user (it's true, I'm not a professional dev and use fossil for my pet projects) so honest question: why would you want to rewrite your history?
Re: Quickly rewrite Git repository history
#14Earlier quoted context omitted.
Personality have needed for the following reasons (when wanting to preserve history): removing personal info, removing sensitive keys/passwords that were accidently committed a long time ago, splitting a repo. There's lots of use cases
I support anti-dox/and security practices by cleaning up repo history and rotating where you can, as long as your safe with the assumption that anyone with a copy of the history could push it back to central at any point. But I really don't like the trend of some folks "need a clean history" and then disabled merge commits. It's like they are saying "cool snap shot system you got there, id hate for it to be use to ta…
Re: Quickly rewrite Git repository history
#15I'm not a git user (it's true, I'm not a professional dev and use fossil for my pet projects) so honest question: why would you want to rewrite your history?