From f4d6c02f6efb0c58679e40938976a4326fe751da Mon Sep 17 00:00:00 2001 From: Jasmine Galang Date: Fri, 1 Jun 2018 15:24:37 -0700 Subject: [PATCH] made changes to README --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c4dcbed..5ad6e8c 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ # Pre Course Git Fu [Pre Class Video](https://youtu.be/ZihgMcrHOF4) ## Terms for learning Git - * Repository - - * Git - Version Control - - * Clone - - * Fork - - * History - - * Staging - - * Remote - - * Commit - - * Push - + * Repository - it is where your file/s being stored. + * Git - Version Control - it is one of the most popular version control tools that programmers/software engineering organizations use for their projects or codebases. + * Clone - downloads the existing remote repository to your local computer. + * Fork - is the act of copying a repository which allows you to work on and modify that forked repo without messing it up. + * History - all of the previous commits to your project. + * Staging - your file is waiting and ready to commit. + * Remote - repositories that are not on our local computer are referred as remote repos and they are hosted somewhere, usually online like at Github.com + * Commit - record changes to the repository. + * Push - uploads or "pushes" all the commits to the origin (remote repo) ## Steps to our Lamba School Git Flow 1. Fork repository