Quiz Question 1 of 5
Which commit messages will be included in the output of git log
?
$ git checkout master
$ git checkout -b red-riding-hood
$ git add red-riding-hood.txt
$ git commit -m "Add heroine"
$ git checkout -b wolf
$ git add red-riding-hood.txt
$ git commit -m "Add villain"
$ git log
Choose the correct answer below: