Deleting a commit with Git
馃嚮馃嚜 Spanish
1.- You can do an interactive rebase with git rebase -i HEAD~ command. In HEAD~ you should indicate the numbers of the backward commit that you want to see.
git rebase -i HEAD~3
2.- Change pick by drop in the commit that you want to de...
crisprogramming.hashnode.dev1 min read