Week 2: Git rebasing and more!
Git rebase One of my tasks this second week was using interactive rebase to organize previous work.
Interactive rebase, git rebase -i, is a useful and powerful command that allows you to change your commits in many ways such as editing, deleting, splitting and squashing. You must indicate how far back you want to rewrite commits by telling the command which commit to rebase onto. In my case:
$git rebase -i HEAD~30
[Read More]