Search Results

0
votes

Git: removing selected commits from repository

You can non-interactively remove B and C in your example with: git rebase --onto HEAD~5 HEAD~3 HEAD or symbolically, git rebase --onto A C HEAD …