What is the purpose of a README file?
A README file is usually the first file a user sees when they open a project,
and acts as a guide for anyone who wants to understand or contribute to the project.
A README file should include:
- What the project does.
- Why the project is useful.
- How to install and use the project.
- Where to find help on a project.
- Information on who maintains and contributes to the project.
More about READMEs
What is the purpose of a Wireframe?
A wireframe is a simple layout of an app or website that shows the structure and key features.
It's used early in design to plan how users will interact with the page before adding visuals and content.
The three main purposes of wireframes are:
- To keep the design focused on the user.
- To Help identify potential problems by making features and navigation clear.
- A low-cost way to test ideas because they are quick to create.
Wireframes can be created using paper and pencil, or with software like Figma, Sketch, or Adobe XD.
More about Wireframes
What is a branch in Git?
A branch in Git is a separate line of development in a project.
It’s created from another branch, usually the main one, so you can make changes without affecting the rest of the project.
Each branch is like a copy of the project where you can work on different versions of a project at the same time.
- Branches are useful for teams working on the same project.
- You can create a new branch for features, bug fixes, or experiments, and then merge them back into the main branch when they're ready.
More about Git Branches