Slide 16
Slide 16 text
Branching
If we have a new feature request, which
implementation concerns much of the source
code, it would be safer to work on the feature
in a separate branch.
$git branch Feature1022 –m “Comment”
$git checkout Feature1022
$git branch
Create a branch
Switch to the branch
Show available branches