Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 2.51 KB

README.md

File metadata and controls

32 lines (24 loc) · 2.51 KB

branch-example

Example files to help learn branching

About

This excercise is meant to be done with two or more people. The idea is to allow practicing creating and merging branches with simple text files. Markdown files are used but really any simple text file (ie .txt) could be used as well.

It's created for people who already have some knowledge of Git and GitHub. The commands shown here are ones to be entered into the terminal. There are also tools that can be used to perform these ations in a more visual way.

Setup

Before you start, everyone in the group will need GitHub accounts.

  1. Create Repo from Template: One person in the group creates a repository baed on this one (click the Use this Template button).
  2. Add Collaborators: everyone else in the group gives their Github usernames to the peron who created the repository. That person then can add them a collaborators to the repository.

Branching and Merging with Individual Files

  1. Add name to People folder: everyone should go in and create a branch. Name the branch with your name. For example if your name is jane
    • git checkout -b jane
    • note: two branches can't share the same name so if two people share the same name, use last name, nickname etc.
  2. Create Personal File: in the new branch each person should create a file for themselves in the people folder.
    • remember to commit the file after creating. For example:
    • git add jane.md
    • git commit -m "added file for jane"
  3. Switch back to the main branch: after creating and committing the new file, switch to main. we do this because when you merge you merge another branch into the branch you're currently in. Since we want each person to merge their branch into the main branch, people should move to main before merging.
    • git checkout main
    • note that we dont' add -b because that is only added when creating a new branch.
    • if you're using a visual tool, you may be able to merge without switching branches.
  4. Merge person branch into Main: merge it into the main branch. To merge the jane branch we made earlier we would enter:
    • git merge jane

If everyone did this with unique file names then all files from all people should be now merged back into the main branch and the people folder should have a file for each person.