Learning branches with git - SOLUTION
Closed this issue · 1 comments
sjgriffiths commented
git commit -m "is working"
git checkout -b colours
git commit -m "red"
git commit -m "pink"
git commit -m "orange"
git checkout master
git checkout -b taste
git commit -m "sweet"
git checkout 6d88ee1
git checkout -b sound
git commit -m "white noise"
git merge taste
git checkout taste
git commit -m "salty"
git checkout master
git checkout -b touch
git commit -m "soft"
git commit -m "sharp"
git checkout e137e9b
git commit
git checkout master
sjgriffiths commented
Answers UCL-RITS/rsd-classwork-2019#1