Welcome to day 1 at BloomTech, today we are going to spend time setting up your computer and learning the tools that you will be using to complete this program. Just like day 1 at a job, you will need to get your environment set up to build and run your code. Complete the set up tasks below and then get started on the research questions. Once you have finished check out the submission instructions in the README.md
file to turn in your assignment for the day.
- Download xcode - these are your developer tools for mac
- sign up for a GitHub account - please use a professional username. We recommending using your
firstname
lastname
- Set up your SSH key - GitHub uses SSH to keep their files secure. You will need to set up one SSH key for every computer that you want to access your GitHub account on. Please ensure you go through all of the steps to generate a new key, add a new key and test your connection.
- Download Zoom - make sure your zoom display name is your
first name
last name
- Download Slack - make sure your slack display name is your
first name
last name
- Download VS code - this will be the tool you use to write all of your code. We recommend installing the following extensions:
- Download Node.JS - Please download the latest stable version. We will be using Node.JS to run the tests in all of our javaScript assignments. Test driven development is a common practice in the world of web dev. You can read more about it here
- Sign up for a free codepen account
- Sign up for a free account on Lucid Chart
Now that you are all set up, it's time to learn a little more about the tools of the trade. Edit this file and answer the following questions. You can type your answer below the questions. You are going to need to start familiarizing yourself with the GitHub docs doc short for documentation are the instructions on how to use a languge, or program. A large part of your job as a developer will be learning how to read and work with documentation. Please reference the GitHub docs when answering the questions below. If you cannot find what you are looking for in the docs, you can always start to practice your google skills.
- What is git? What is the difference between git and GitHub?
- Why do we create a branch?
- What is the purpose of a pull request?
- What is the command you can use to switch between branches? For example you are working on a feature branch and you want to switch back to main.
- Explain the difference between
git fetch
,git merge
andgit pull
what does each command do? - What is a merge conflict? How do you resolve a merge conflict?