-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Learning GitHub
This week, you will be going through steps to set up tools needed to be successful in this camp. If you are already familiar with some, feel free to skip to the end and complete the task to move on.
GitHub
❓ What is Github?
GitHub is a platform that is widely used in the tech industry, that enables code hosting and makes collaboration for coding a seamless process. You can use GitHub to manage your files, changes in your project, version control (the ability to revert back to previous versions of your code as well as versions developed by other programmers), and more.
Get started with GitHub
Check out "The Github Flow" for more information on issues, pull requests, committing, and branches!
❗ Help! I don't know how to use it and I need more information.
If you want to learn more about what it is and how to use it, try taking this GitHub Learning Lab Course. After finishing it, you will have a strong understanding of all the features GitHub has to offer.
One very important rule...
Don't work on your code in the web editor. This is bad practice, and you will regret it later.
❓ What should I do instead?
Install Github Desktop and commit from your local computer. We'll go over code editors next if you don't have one to work on your code locally. You can also use git on your commandline.
📝 Task 1: Create a new branch named test, add a sentence introducing yourself to the end of the README.md file, and commit the change to test. Then, make a pull request to your main branch and merge the edits.
Pull Request Guidelines
- Name the Pull Request
Adding self introduction - In the description, place a sentence describing what the Pull Request contributes to the main branch.
Key functions you should be familiar with after this task include:
- Committing changes
- Forking a repository
- Making a new branch
- Making a pull request