CAREFULLY READ ALL THE INSTRUCTIONS BEFORE STARTING THESE EXERCISES!
To start this assignment:
- Click the button in the upper right-hand corner that says Fork. This is now your copy of the document.
- Click the Edit button when you're ready to start adding your answers.
- To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.
Read this article on git commit messages
- Your key take-aways OR how you're going to implement specific points (minimum 2):
- Be specific, concise and professional
- Proper syntax is very important
What's the use of the staging area in git? on Stackoverflow (15 min)
The idea of the staging area is frequently one of the trickiest concepts to wrap your head around when you're first learning git. Read the question and answers (or do your own Googling on the git staging area). Then, create your OWN metaphor comparing the staging area to something in real life.
- Type your metaphor below:
The staging area is like the dress rehearsal for a play or musical. Everything is nearly set-up and almost ready to go, but you haven't had opening night in front of a live audience yet.
Follow the steps below to practice the git workflow. Be ready to copy-paste your terminal output as confirmation of your practice.
- Create a directory called
git_homework. Inside of there, create a file calledthoughts.md - Initialize the directory
- Use
git statusto ensure you are set up for tracking using Git - Add your
thoughts.mdto the staging area - Check the
git status - Create an initial commit (Note: Be sure to follow the correct message format for your first commit!)
- Check the
git status - Add two takeaways you've had from your first few classes of Mod 0 as it relates to success at Turing.
- Check the
git status - Check the changes you've made using
git diff - Add the changes to the staging area
- Commit the new changes (Note: Be sure to follow convention for commit messages!)
- Check the status
- Add two new strategies you are committed to trying during the rest of Mod 0 to
thoughts.md - Add the changes to the staging area
- Commit the new changes (Note: Be sure to follow convention for commit messages!)
- Add at least one shoutout to someone who has helped you, supported you, or just been a positive presence in the last two weeks!
- Add the changes to the staging area
- Commit the new changes (Note: Be sure to follow convention for commit messages!)
- Show the log of your work in
onelineformat usinggit log(This will likely require some Googling)
Copy and paste all of the terminal text from this process below (not just the history):
/Users/jgrazulis/.git main $mkdir git_homework
/Users/jgrazulis/.git main $cd git_homework
/Users/jgrazulis/.git/git_homework main $touch thoughts.md
/Users/jgrazulis/.git/git_homework main $git init git_homework
Initialized empty Git repository in /Users/jgrazulis/.git/git_homework/git_homework/.git/
/Users/jgrazulis/.git/git_homework main $git status
On branch main
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
./
nothing added to commit but untracked files present (use "git add" to track)
/Users/jgrazulis/.git/git_homework main $git add git_homework
error: 'git_homework/git_homework/' does not have a commit checked out
fatal: adding files failed
/Users/jgrazulis/.git/git_homework main $git add thoughts.md
/Users/jgrazulis/.git/git_homework main $git status
On branch main
No commits yet
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: thoughts.md
Untracked files:
(use "git add <file>..." to include in what will be committed)
git_homework/
/Users/jgrazulis/.git/git_homework main $git commit -m 'Initial commit'
[main (root-commit) f707abd] Initial commit
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 git_homework/thoughts.md
/Users/jgrazulis/.git/git_homework main $git status
On branch main
Untracked files:
(use "git add <file>..." to include in what will be committed)
git_homework/
nothing added to commit but untracked files present (use "git add" to track)
/Users/jgrazulis/.git/git_homework main $ #Persistence is key; it is okay to be confused so long as you are also curious
zsh: command not found: #Persistence
zsh: command not found: it
/Users/jgrazulis/.git/git_homework main $git status
On branch main
Untracked files:
(use "git add <file>..." to include in what will be committed)
git_homework/
nothing added to commit but untracked files present (use "git add" to track)
/Users/jgrazulis/.git/git_homework main $git diff
/Users/jgrazulis/.git/git_homework main $#Be persistent
zsh: command not found: #Be
/Users/jgrazulis/.git/git_homework main $cd thoughts.md
cd: not a directory: thoughts.md
/Users/jgrazulis/.git/git_homework main $git diff thoughts.md
/Users/jgrazulis/.git/git_homework main $git status
On branch main
Untracked files:
(use "git add <file>..." to include in what will be committed)
git_homework/
nothing added to commit but untracked files present (use "git add" to track)
/Users/jgrazulis/.git/git_homework main $git diff
/Users/jgrazulis/.git/git_homework main $git status
On branch main
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: thoughts.md
Untracked files:
(use "git add <file>..." to include in what will be committed)
git_homework/
no changes added to commit (use "git add" and/or "git commit -a")
/Users/jgrazulis/.git/git_homework main $git diff
diff --git a/git_homework/thoughts.md b/git_homework/thoughts.md
index e69de29..e1fc55d 100644
--- a/git_homework/thoughts.md
+++ b/git_homework/thoughts.md
@@ -0,0 +1,2 @@
++Be persistent
+Stay curious
/Users/jgrazulis/.git/git_homework main $git add thoughts.md
/Users/jgrazulis/.git/git_homework main $git status
On branch main
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: thoughts.md
Untracked files:
(use "git add <file>..." to include in what will be committed)
git_homework/
/Users/jgrazulis/.git/git_homework main $git commit -m"Add success at turing take aways"
[main 8cda7da] Add success at turing take aways
1 file changed, 2 insertions(+)
/Users/jgrazulis/.git/git_homework main $git status
On branch main
Untracked files:
(use "git add <file>..." to include in what will be committed)
git_homework/
nothing added to commit but untracked files present (use "git add" to track)
/Users/jgrazulis/.git/git_homework main $git diff
diff --git a/git_homework/thoughts.md b/git_homework/thoughts.md
index e1fc55d..9a9bc29 100644
--- a/git_homework/thoughts.md
+++ b/git_homework/thoughts.md
@@ -1,2 +1,4 @@
+Be persistent
Stay curious
+Maintain study habits
+Follow schedule
/Users/jgrazulis/.git/git_homework main $git add thoughts.md
/Users/jgrazulis/.git/git_homework main $git status
On branch main
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: thoughts.md
Untracked files:
(use "git add <file>..." to include in what will be committed)
git_homework/
/Users/jgrazulis/.git/git_homework main $git commit -m"Add new strategies"
[main 9e3c15b] Add new strategies
1 file changed, 2 insertions(+)
/Users/jgrazulis/.git/git_homework main $git diff
diff --git a/git_homework/thoughts.md b/git_homework/thoughts.md
index 9a9bc29..93dadff 100644
--- a/git_homework/thoughts.md
+++ b/git_homework/thoughts.md
@@ -2,3 +2,4 @@
Stay curious
Maintain study habits
Follow schedule
+My partner!
/Users/jgrazulis/.git/git_homework main $git add thoughts.md
/Users/jgrazulis/.git/git_homework main $git commit -m"Add supporters"
[main 6f30e84] Add supporters
1 file changed, 1 insertion(+)
/Users/jgrazulis/.git/git_homework main $git log --oneline
6f30e84 (HEAD -> main) Add supporters
9e3c15b Add new strategies
8cda7da Add success at turing take aways
f707abd Initial commit
/Users/jgrazulis/.git/git_homework main $
IMPORTANT: Do NOT remove this git_homework directory. You will be using this directory during the next session.
Your task: create a "Plan for Mod 0" documenting your gameplan for success in Mod 0, using Markdown.
Markdown (.md) is the format all of your homework gists are written in.
Using this markdown cheatsheet, create a new gist of your own by clicking the New Gist button in the upper right-hand corner of the screen.
Also, images can be a little tricky in gists and Github - be sure to check out the drag-n-drop shortcut from the first answer on this Stack Overflow post!
In the box to title your Gist, be sure to use follow this format: firstName_lastName_mod_0_plan.md
NOTE: Remember to add a .md file extension to filename of your new Gist. Otherwise it will not register as markdown.
https://gist.github.com/jgrazulis/5f2be2fce2ef3d7bd0362d79074b798f
In addition to documenting your gameplan for success in Mod 0, incorporate each of the following features into your Gist:
- at least two headings of different sizes
- at least one numbered list
- at least one bullet point list
- at least one bold word/phrase
- at least one italic word/phrase
- at least one code block (in Javascript for Frontend or in Ruby for Backend)
- at least one inline code block (greyed text)
- at least one image
- ⚡️ TURN THIS SENTENCE INTO A LINK TO YOUR GIST ⚡️
Using the rubric below, assess how you did with these exercises. These are the same metrics your instructors will use to determine if you are prepared for Mod 1!
- I read carefully read ALL directions
- I completed all parts of the exercises (not including Extensions) to the best of my ability
- I used correct syntax, spacing and naming conventions
- I followed ALL formatting instructions
- I pushed myself out of my comfort zone and experimented/broke things to try to learn
- I spent no longer than 20-30 mins Googling a specific problem before asking for help
- I went back to the lesson to search for clarification before asking for help
If you have any questions, comments, or confusions that you would like an instructor to address, list them below:
- I've tried the different methods on the cheat sheet but am still having trouble with adding links to the markdown.
Are you stuck on something? Here is the BEST way to ask for help:
- Start or reply in the thread with the problem you are facing. Be sure to follow the guidelines for asking questions below:
- I can explain what I am trying to do or accomplish
- I can what I have tried so far and/or what resources I've tried online
- I can describe specifically what I am stuck on
- I provided screenshots and/or code examples to give context
- If I provided short code examples, I used
inline code formattingfor single lines of code/error messages - If I provided larger blocks of code, I used a code snippet in the correct format (such as
.jsor.rb)
- If I provided short code examples, I used
- Usually, your classmates will be able to answer your question or point you in the right direction very quickly! If not, an instructor will reply within 24-48 hours
@jgrazulis - Nice work on your git practice exercise - were you able to figure out how to open up atom from the command line? I didn't see a link to your markdown practice gist here - could you update that and comment here once it's ready to review? Thanks!