###BLOC Apprenticeship: Git Checkpoint Assignment###
Here's my terminal output showing my Git commands.
Avenue:git_test ave3362$ clear
Avenue:git_test ave3362$ git checkout -b assignment
Switched to a new branch 'assignment'
Avenue:git_test ave3362$ open readme.txt
Avenue:git_test ave3362$ git add .
Avenue:git_test ave3362$ git commit -m 'Added a line to my new branch'
[assignment 916066e] Added a line to my new branch
1 file changed, 3 insertions(+), 1 deletion(-)
Avenue:git_test ave3362$ git checkout master
Switched to branch 'master'
Avenue:git_test ave3362$ open readme.txt
Avenue:git_test ave3362$ git merge assignment
Updating e0feb37..916066e
Fast-forward
readme.txt | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
Avenue:git_test ave3362$ git status
On branch master
nothing to commit, working directory clean
Avenue:git_test ave3362$ open readme.txt
Avenue:git_test ave3362$
Avenue:git_test ave3362$ git branch -d assignment
Deleted branch assignment (was 916066e).
Avenue:git_test ave3362$My to-do list is getting longer:
- First Assignment
- Second Assignment
- Third Assignment
- Fourth Assignment
💥 💥 💥