Objective: Practice writing meaningful commit messages.
Exercise:
git add newfile.txt git commit -m "________"
Hint: The commit message should be clear and concise, like "Add initial version of newfile.txt".
Answer:
Add initial version of newfile.txt
Objective: Fill in the blanks to follow best practices in Git.
git checkout -b ____-branch git commit -m "____ changes in feature-branch" git ____ origin feature-branch
Answers:
feature
Describe the specific
push