Git contd
Rebase
- rebase might result to conflicts,
- watch classroom video to learn how to resolve
Cherry picks
- Refer Here for cherry pick documentation
Reworking
- if we need to change history, we can use rebase.
- Lets use rebase to change something that was committed
- Commands
git commit --amend
- Try interactive rebasing for
- deleting commits
- squashing commits
- editing commits
