10 Jun
2015
10 Jun
'15
5:25 p.m.
* SpinFlo <sl1pkn07@gmail.com> (Wed, 10 Jun 2015 19:14:04 +0200):
howto remove (no revert) bad commits and push the change to [aur4]?
I think what you want is git rebase: $ git rebase -i HEAD~2 This opens an editor with the last two commits, where you can squash a previous revision into a later one. Use HEAD~3 to select the last three commits, etc. Best, Marcel