Explanations

Screenshot of a README file displayed in a code editor

What is the purpose of a README file?

A README explains what a project does and how to use it. It is the first file that we see in the git hub repo, it gives us information about the project, the purpose and how to get started about the project.

Read more about README files
Simple wireframe sketch showing header, columns and footer blocks

What is the purpose of a wireframe?

A wireframe is a structure that shows the layout of content of a page. It focuses on structure and hierarchy (not visual design), so teams can iterate on layout and user flows early.

Read more about wireframes
Diagram of Git commits on multiple branches

What is a branch in Git?

A branch is a separate line of development. It lets you build features or fixes in isolation from the main codebase and merge them back when ready, so the main branch stays stable.

Read more about Git branches