From 4a75970aaea421b399757322fcc933c86145610f Mon Sep 17 00:00:00 2001 From: jafrog Date: Tue, 1 Mar 2016 16:08:31 +0000 Subject: [PATCH 01/11] Step 5 --- step5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/step5 b/step5 index 3c75e512d..f4a0a6995 100644 --- a/step5 +++ b/step5 @@ -1,3 +1,3 @@ -Reference: +Reference: -To get to this step `git checkout` the 'step-5' branch and try to visit this file again. \ No newline at end of file +You found two witness intreview files. Take a look inside both of them and save any useful information that comes up into 'interview_info.txt'. Commit the file but don't push it yet! first checkout the 'master' branch again and merge 'step-5' branch into it. From ec211025987664a46e2ad35205f04e2ca7d54996 Mon Sep 17 00:00:00 2001 From: jafrog Date: Fri, 4 Mar 2016 12:29:15 +0000 Subject: [PATCH 02/11] Step 5 merge reference --- reference/step5.md | 4 ++++ step5 | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/reference/step5.md b/reference/step5.md index f7fda53d7..4e72fdfcf 100644 --- a/reference/step5.md +++ b/reference/step5.md @@ -7,3 +7,7 @@ The `git branch` command allows you to see branches you have locally. To see all # `git checkout` Use `git checkout BRANCH_NAME` to switch "active" or "current" branch. You can checkout to a new branch even if it's stored in the remote repository. When you do this the branch will be copied to your machine and will be set as "current" branch. + +# `git merge` + +`git merge` allows you to merge two branches together. E.g. if your current branch is "master" and you type `git merge more-cats` all the changes in the `more-cats` branch will be applied to the "master" branch and a new commit (merge commit) will be created. diff --git a/step5 b/step5 index f4a0a6995..defe20b36 100644 --- a/step5 +++ b/step5 @@ -1,3 +1,3 @@ -Reference: +Reference: ./reference/step5.md You found two witness intreview files. Take a look inside both of them and save any useful information that comes up into 'interview_info.txt'. Commit the file but don't push it yet! first checkout the 'master' branch again and merge 'step-5' branch into it. From ccc7a1726bebfb32d15b06c8cc97f979d4f00cb6 Mon Sep 17 00:00:00 2001 From: Roi Driscoll Date: Thu, 10 Mar 2016 15:58:18 +0000 Subject: [PATCH 03/11] Edits to step-5 branch --- step5 | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/step5 b/step5 index 0ead53e6f..de2dc2476 100644 --- a/step5 +++ b/step5 @@ -1,5 +1,7 @@ -Reference: ./detective_handbook/step5.md +Reference: ./reference/step5.md -You're concerned that the investigation has been compromised. You use an old detective trick to cover your tracks. +You found two witness interview files. Take a look inside both of them and save any useful information into a new file called 'interview_info.txt'. -To recover your 'step5' file, use the `git checkout` command to check out the 'step-5' branch, and try to view this file again. +You feel satisfied that you have covered your tracks - time to consolidate your files. Commit the file but DON'T PUSH IT YET! + +First checkout back into the 'master' branch, and merge the 'step-5' branch into 'master'. From 4f7b424960f5123f1edc7c01fa3e2a7ed39431a4 Mon Sep 17 00:00:00 2001 From: jafrog Date: Mon, 14 Mar 2016 17:50:58 +0000 Subject: [PATCH 04/11] Note on Vim --- detective_handbook/step5.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/detective_handbook/step5.md b/detective_handbook/step5.md index 4e72fdfcf..b02052510 100644 --- a/detective_handbook/step5.md +++ b/detective_handbook/step5.md @@ -11,3 +11,5 @@ Use `git checkout BRANCH_NAME` to switch "active" or "current" branch. You can c # `git merge` `git merge` allows you to merge two branches together. E.g. if your current branch is "master" and you type `git merge more-cats` all the changes in the `more-cats` branch will be applied to the "master" branch and a new commit (merge commit) will be created. + +`git merge` will open your default editor for you to confirm the merge commit message. If your default editor is set to Vim (you can check it by typing `echo $EDITOR`) see command line [section on Vim](https://github.com/makersacademy/pre_course/blob/master/pills/command_line4.md#vim). From a75c50cd462c9852ca2c30462f2db4deca29c06c Mon Sep 17 00:00:00 2001 From: Tommy Williams Date: Wed, 24 Mar 2021 12:09:21 +0000 Subject: [PATCH 05/11] Updated master to main and Vim link --- detective_handbook/step5.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/detective_handbook/step5.md b/detective_handbook/step5.md index b02052510..93a57f5e7 100644 --- a/detective_handbook/step5.md +++ b/detective_handbook/step5.md @@ -1,15 +1,15 @@ # `git branch` -Branches in Git allow you to work on several different versions of your working directory at the same time. When you create a new branch and start tracking your changes they'll be saved only in this new branch. At any moment you can switch back to your original (e.g. "master") branch and all your files will be in the same state you left them before "branching out" regardless of the work you've done in the new branch. +Branches in Git allow you to work on several different versions of your working directory at the same time. When you create a new branch and start tracking your changes they'll be saved only in this new branch. At any moment you can switch back to your original (e.g. "main") branch and all your files will be in the same state you left them before "branching out" regardless of the work you've done in the new branch. -The `git branch` command allows you to see branches you have locally. To see all branches including remote ones type `git branch -a`. +The `git branch` command allows you to see which branches you have locally. To see all branches including remote ones type `git branch -a`. # `git checkout` -Use `git checkout BRANCH_NAME` to switch "active" or "current" branch. You can checkout to a new branch even if it's stored in the remote repository. When you do this the branch will be copied to your machine and will be set as "current" branch. +Use `git checkout BRANCH_NAME` to switch "active" or "current" branch. You can checkout to a new branch even if it's stored in the remote repository. When you do this, the branch will be copied to your machine and will be set as "current" branch. # `git merge` -`git merge` allows you to merge two branches together. E.g. if your current branch is "master" and you type `git merge more-cats` all the changes in the `more-cats` branch will be applied to the "master" branch and a new commit (merge commit) will be created. +`git merge` allows you to merge two branches together. E.g. if your current branch is "main" and you type `git merge more-cats` all the changes in the `more-cats` branch will be applied to the "main" branch and a new commit (merge commit) will be created. -`git merge` will open your default editor for you to confirm the merge commit message. If your default editor is set to Vim (you can check it by typing `echo $EDITOR`) see command line [section on Vim](https://github.com/makersacademy/pre_course/blob/master/pills/command_line4.md#vim). +`git merge` will open your default command line text editor for you to confirm the merge commit message. Your default editor is likley to be Vim (you can check it by typing `echo $EDITOR`) see the PreCourse [section on Vim](https://makersacademy.teachable.com/courses/256825/lectures/3989204). From 2554d45730285bfea162a7c603bb963b640b7374 Mon Sep 17 00:00:00 2001 From: Tommy Williams Date: Wed, 24 Mar 2021 12:15:23 +0000 Subject: [PATCH 06/11] Updated master to main --- step5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/step5 b/step5 index cf1f3fa3f..cbd692924 100644 --- a/step5 +++ b/step5 @@ -4,4 +4,4 @@ You found two witness interview files. Take a look inside both of them and save You feel satisfied that you have covered your tracks - time to consolidate your files. Commit the file but DON'T PUSH IT YET! -First checkout back into the 'master' branch, and merge the 'step-5' branch into 'master'. +First checkout back into the 'main' branch, and merge the 'step-5' branch into 'main'. From f3850e9a9a47045d8e927654e51c57f75c14a19a Mon Sep 17 00:00:00 2001 From: Zara Date: Sat, 15 Apr 2023 23:15:22 +0100 Subject: [PATCH 07/11] crimescene clues added --- mystery/clues.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mystery/clues.txt diff --git a/mystery/clues.txt b/mystery/clues.txt new file mode 100644 index 000000000..4cb9d27fe --- /dev/null +++ b/mystery/clues.txt @@ -0,0 +1,3 @@ +CLUE: Footage from an ATM security camera is blurry but shows that the perpetrator is a tall male, at least 6'. +CLUE: Found a wallet believed to belong to the killer: no ID, just loose change, and membership cards for AAA, Delta SkyMiles, the local library, and the Museum of Bash History. The cards are totally untraceable and have no name, for some reason. +CLUE: Questioned the barista at the local coffee shop. He said a woman left right before they heard the shots. The name on her latte was Annabel, she had blond spiky hair and a New Zealand accent. From cb08c96cca7d81b745f765d1efbe2914ae0efdda Mon Sep 17 00:00:00 2001 From: Zara Date: Sat, 15 Apr 2023 23:21:14 +0100 Subject: [PATCH 08/11] Annabel info added and address --- mystery/possible_witnesses.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mystery/possible_witnesses.txt diff --git a/mystery/possible_witnesses.txt b/mystery/possible_witnesses.txt new file mode 100644 index 000000000..f50961589 --- /dev/null +++ b/mystery/possible_witnesses.txt @@ -0,0 +1,4 @@ +Annabel Sun F 26 Hart Place, line 40 +Oluwasegun Annabel M 37 Mattapan Street, line 173 +Annabel Church F 38 Buckingham Place, line 179 +Annabel Fuglsang M 40 Haley Street, line 176 From 1dad5fb257bc4d7ba02d3615f5adf3322da4065b Mon Sep 17 00:00:00 2001 From: Zara Date: Sat, 15 Apr 2023 23:27:49 +0100 Subject: [PATCH 09/11] Interviews highlight from Annabels info --- mystery/streets/interviews.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 mystery/streets/interviews.txt diff --git a/mystery/streets/interviews.txt b/mystery/streets/interviews.txt new file mode 100644 index 000000000..2ac022276 --- /dev/null +++ b/mystery/streets/interviews.txt @@ -0,0 +1,2 @@ +SEE INTERVIEW #47246024 +SEE INTERVIEW #699607 From c1cf50ea212f64262c3de010a666b7a0310f695e Mon Sep 17 00:00:00 2001 From: Zara Date: Sun, 16 Apr 2023 00:55:52 +0100 Subject: [PATCH 10/11] Eye witness report vechicle fleeing the scene --- mystery/interviews/interview_info.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mystery/interviews/interview_info.txt diff --git a/mystery/interviews/interview_info.txt b/mystery/interviews/interview_info.txt new file mode 100644 index 000000000..7b7539fa9 --- /dev/null +++ b/mystery/interviews/interview_info.txt @@ -0,0 +1,3 @@ +Interviewed Ms. Church at 2:04 pm. Witness stated that she did not see anyone she could identify as the shooter, that she ran away as soon as the shots were fired. + +However, she reports seeing the car that fled the scene. Describes it as a blue Honda, with a license plate that starts with "L337" and ends with "9" From 9712e3da1786590a46ff1da90d7deb34b594472a Mon Sep 17 00:00:00 2001 From: Zara Date: Sun, 16 Apr 2023 12:29:54 +0100 Subject: [PATCH 11/11] suspects added from license plate info --- mystery/suspects.txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 mystery/suspects.txt diff --git a/mystery/suspects.txt b/mystery/suspects.txt new file mode 100644 index 000000000..7697dd169 --- /dev/null +++ b/mystery/suspects.txt @@ -0,0 +1,23 @@ +License Plate L337QE9 +Make: Honda +Color: Blue +Owner: Erika Owens +Height: 6'5" +-- +License Plate L337DV9 +Make: Honda +Color: Blue +Owner: Joe Germuska +Height: 6'2" +-- +License Plate L3375A9 +Make: Honda +Color: Blue +Owner: Jeremy Bowers +Height: 6'1" +-- +License Plate L337WR9 +Make: Honda +Color: Blue +Owner: Jacqui Maher +Height: 6'2"