What is 2 + 2?
4
What is the opposite of Black?
white
What is the 2 * 3 * 6 * 1 * 10 * 34?
12240
What does HTML stand for?
Hyper Text Markup Language
What is CSS useful for?
Making a website layout and making it presentable
Using CSS, how would I select every <h1> tag on the page?
h1 {
}What is JavaScript?
A programming language for the website
What three problem does Git & Github solve?
When people want to share code to each other they can put it on Github ,for collaboration and version control
What happens when you fork a repository?
You create a personal copy of someone else code/project
What happens when you clone a repository?
It downloads a repository to your local computer from Github.
What is a Pull Request?
When you submit your code to show the changes you have made to a code.
What is the Git History log
its the record of the amount of commits made
What does it meant to "push" changes to Github?
You send the changes of your local repository to Github
What is Github?
is a code hosting platform for version control and collaboration
What does it mean to "Commit your changes"?
it means to save ypu repo
What program do we use to write code at CodeYourFuture?
Visual studio
What do you use "Commit Messages" for?
To record what changes you made to the code
Where can I look to find help with Git?
The Git CheatSheet!