Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 742 Bytes

04_branching_with_git.md

File metadata and controls

19 lines (10 loc) · 742 Bytes

Branching with Git

The first step in the GitHub Workflow is to create a branch. This will allow us to experiment with new features without accidentally introducing untested changes on our production branch.

Branching defined

GitHub Workflow

When you create a branch, you are essentially creating an identical copy of the project at that point in time. This isn't the same as creating a physical copy on disk. In the background, a branch is just a pointer.

Let's learn how you can create a new branch.

include

Exploring

Here are some interesting things you can check out later: