+ Here are some useful things to know when learning to create your own websites
+ and manage tech projects.
+
+
+
+
+
+
The Purpose of a Readme File
- This is the default, provided code and no changes have been made yet.
+ A readme file is a very important part of any GitHub repository. It is often the first item a visitor will see
+ when landing on a repository. A readme file should provide users with information about the purpose of a
+ project, how to use it effectively and who the contributers and maintainers of the project are.
-
-
-
-
-
Title
-
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
- voluptates. Quisquam, voluptates.
-
+ A git branch is a pointer to a snapshot of all the changes that occured
+ on that branch. Upon creating a new GitHub repository you will usually
+ be on the main branch by default. You can create additional branches which
+ are like separate workspaces to make changes to a project or test other features
+ without compromising the base project. Branches are useful when working
+ on a project with many collaborators as each individual can make changes on their own local
+ copy of a project and propose their changes to be integrated to the main branch
+ after approval.
+