learn-github-js30

Learn Git using Javascript30 Course

Practice Git using Wes Bos - JavaScript30 course

Step 1

In this step, we will fork this tutorial repository.

Instructions

Step 2

In this step, we will take the forked repository and clone it down to our machine.

Instructions

Step 3

In this step, we will make changes to our clone and push them to GitHub.

Instructions

Step 4

Summary

Here is where things start to get different. Let’s imagine we’re working in groups. If we have everyone pushing to one repo without verifying the quality of the code, things can get messy pretty quick. GitHub fixed this solution with ‘Pull Requests.’ Basically, you fork a project, make changes to your fork, then you make a Pull Request (PR) back into the original project requesting that some piece of code be added to the original repo. This is how the vast majority of open source code projects work. In this step, we will make a pull-request.

Instructions