Experimenting with Feature Branches
Scenario
Creating a Feature Branch
git checkout -b profile-picture-featureMaking Changes in the Feature Branch
Committing Changes
git add .
git commit -m "Implemented profile picture upload feature"Iterating and Collaborating
Merging the Feature Branch
Resolve conflicts (if any)
Review the changes
Commit the merge
Last updated