Update README.md
Added imagery for terminal, command prompt and downloads section of git at 400px. Added short description of Git Bash, added 'following default settings' to git download description.
This commit is contained in:
parent
69aa5bd310
commit
2b5ec864b6
1 changed files with 14 additions and 5 deletions
17
README.md
17
README.md
|
|
@ -10,7 +10,7 @@ Whether you are starting from zero or have a decade of experience under your bel
|
||||||
|
|
||||||
Things that you should be EXCEPTIONALLY proud of yourself for doing…
|
Things that you should be EXCEPTIONALLY proud of yourself for doing…
|
||||||
|
|
||||||
Things I’M exceptionally proud of you for doing…
|
Things I’m exceptionally proud of you for doing…
|
||||||
|
|
||||||
Tl;dr - I love you all, and it means the world to me that you’re here. Okay, on to the code…
|
Tl;dr - I love you all, and it means the world to me that you’re here. Okay, on to the code…
|
||||||
|
|
||||||
|
|
@ -41,12 +41,17 @@ Tl;dr - I love you all, and it means the world to me that you’re here. Okay, o
|
||||||
|
|
||||||
*Mac Instructions:* Your machine should come with an application called “Terminal” - just confirm you have this app installed and can open it.
|
*Mac Instructions:* Your machine should come with an application called “Terminal” - just confirm you have this app installed and can open it.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
1. Use Spotlight (cmd + space) to search for “terminal"
|
1. Use Spotlight (cmd + space) to search for “terminal"
|
||||||
2. Open the app.
|
2. Open the app.
|
||||||
3. Come talk to me if you can’t find the app.
|
3. Come talk to me if you can’t find the app.
|
||||||
|
|
||||||
|
|
||||||
*Windows Instructions:* Your system comes with a program called “Command Prompt.”
|
*Windows Instructions:* Your system comes with a program called “Command Prompt.”
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
1. To access it, click on the Start menu or press the Windows key.
|
1. To access it, click on the Start menu or press the Windows key.
|
||||||
2. Type `cmd` into the search bar and press Enter.
|
2. Type `cmd` into the search bar and press Enter.
|
||||||
3. The Command Prompt should appear in the search results. Click on it to open.
|
3. The Command Prompt should appear in the search results. Click on it to open.
|
||||||
|
|
@ -67,8 +72,9 @@ First, some quick vocab for y’all:
|
||||||
- **Git:** is an open source VCS. Think of it like a program that runs on your computer that you can use in your coding projects to help manage versions of that project.
|
- **Git:** is an open source VCS. Think of it like a program that runs on your computer that you can use in your coding projects to help manage versions of that project.
|
||||||
- Managing versions of code becomes especially important the more iterations the code goes through, the more complex/large the codebase becomes, and the more people you have working on it.
|
- Managing versions of code becomes especially important the more iterations the code goes through, the more complex/large the codebase becomes, and the more people you have working on it.
|
||||||
- Git is the most common VCS for code today, by a large margin.
|
- Git is the most common VCS for code today, by a large margin.
|
||||||
- We will have a section in a bit digging in and understanding Git.
|
- We will have a section in a-bit digging in and understanding Git.
|
||||||
- Git is NOT GitHub.
|
- Git is NOT GitHub.
|
||||||
|
- Git Bash is the name for the command-line terminal environment
|
||||||
- Read about git here: https://git-scm.com/
|
- Read about git here: https://git-scm.com/
|
||||||
- **SCM:** “Source Code Manager” - A SCM is a tool to help *manage* source code. In particular, to help manage the sharing and using and collaboration on source code.
|
- **SCM:** “Source Code Manager” - A SCM is a tool to help *manage* source code. In particular, to help manage the sharing and using and collaboration on source code.
|
||||||
- GitHub is an example of an SCM (and the most popular in use by software engineers today).
|
- GitHub is an example of an SCM (and the most popular in use by software engineers today).
|
||||||
|
|
@ -80,10 +86,13 @@ First, some quick vocab for y’all:
|
||||||
|
|
||||||
1. Head to https://git-scm.com/
|
1. Head to https://git-scm.com/
|
||||||
2. Click on “Downloads”
|
2. Click on “Downloads”
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
3. Download the version for your Operating System (Windows, Mac, Linux).
|
3. Download the version for your Operating System (Windows, Mac, Linux).
|
||||||
1. Click the Download icon for your OS under the “Download” banner.
|
1. Click the Download icon for your OS under the “Download” banner.
|
||||||
1. DON’T download the GUI shown lower on the page.
|
1. DON’T download the GUI shown lower on the page.
|
||||||
2. This will download an installer, when finished, open and run the installer, following its instructions.
|
2. This will download an installer, when finished, open and run the installer, following its instructions and using the default settings.
|
||||||
|
|
||||||
Let me know if you have problems installing Git.
|
Let me know if you have problems installing Git.
|
||||||
|
|
||||||
|
|
@ -124,7 +133,7 @@ First, some more vocab for you!
|
||||||
|
|
||||||
Tl;dr - Node.js is how we run javascript on the “back-end” and what we will be using to build full stack apps in this curriculum. It lets us learn one programming language that we can use across the stack.
|
Tl;dr - Node.js is how we run javascript on the “back-end” and what we will be using to build full stack apps in this curriculum. It lets us learn one programming language that we can use across the stack.
|
||||||
|
|
||||||
Okay, now on to the install. This parts actually pretty easy.
|
Okay, now on to the install. This part is actually pretty easy.
|
||||||
1. Head to https://nodejs.org/en/download and download the LTS version for your operating system and hardware. It SHOULD be auto selected for your correct computer, but double check before downloading.
|
1. Head to https://nodejs.org/en/download and download the LTS version for your operating system and hardware. It SHOULD be auto selected for your correct computer, but double check before downloading.
|
||||||
2. Open the installer that is downloaded and follow the steps to install node.
|
2. Open the installer that is downloaded and follow the steps to install node.
|
||||||
3. That’s it! Let me know if you get stuck!
|
3. That’s it! Let me know if you get stuck!
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue