Workflow Recap
That was a lot. Here is a quick version of the workflow.
1. Read the Instructions
2. Open the terminal
ls
can list files and directories in your current locationcd <directory-name>
changes your location to the named directorymkdir <directory-name>
creates a new directory
3. Go to GitHub
- Fork the repo
- Clone the repo to your computer
4. Open Visual Studio Code
- Open your new repo
- Open the terminal - make sure you are in your project directory
- Run the command:
npm install
- Write your code
- Run your code often to check your progress
- Save your changes
5. Push up to GitHub
- In the terminal run the following commands:
git status
git add .
git status
- make sure you added things you wantedgit commit -m "with a message"
git push