From 3947cedde2e8ceb98daa245fdb66d9dfc9bf4924 Mon Sep 17 00:00:00 2001 From: John Kouris Date: Thu, 30 May 2019 13:38:05 -0700 Subject: [PATCH 1/2] made changes to the Readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c4dcbed..568b058 100644 --- a/README.md +++ b/README.md @@ -19,3 +19,5 @@ 5. `git status` to check what is staged 6. `git commit -m 'made changes to the Readme'` 7. `git push` + +I made a change From 326b57bbf3995b22355686d8a1a536d3b3913daf Mon Sep 17 00:00:00 2001 From: John Kouris Date: Thu, 30 May 2019 13:56:25 -0700 Subject: [PATCH 2/2] added the definitions --- README.md | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 568b058..58827d7 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 - A repository contains all of the project files and stores each file's revision history. + * Git - Version Control - An open source program for tracking changes in text fiels and is the core technology that GitHub is built on top of + * Clone - a copy of a repository that lives on your computer instead of on a website's server somewhere + * Fork - a personal copy of another user's repository that lives on your account + * History - a list of all the changes made to the repository + * Staging - a simple file, generally contained in your Git directory, that stores information about what will go into your next commit + * Remote - the version of something that is hosted on a server, most likely GitHub + * Commit - an individual change to a file (or set of files) + * Push - sending your committed changes to a remote repository ## Steps to our Lamba School Git Flow 1. Fork repository @@ -19,5 +19,3 @@ 5. `git status` to check what is staged 6. `git commit -m 'made changes to the Readme'` 7. `git push` - -I made a change