Reputation: 4235
I applied some replacements to a repository with git replace. Now I would like to finalize that and rewrite the history according to the replacements. Is it possible?
git replace
Upvotes: 0
Views: 76
Reputation: 38734
You have to use git filter-branch for this.
git filter-branch
Upvotes: 1