From d6922c7bd47a41b00373cf89cdbd93c43b2f07bc Mon Sep 17 00:00:00 2001 From: Vijay Das Date: Fri, 21 Sep 2018 13:02:09 -0400 Subject: [PATCH 1/2] made change to README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c4dcbed..bbd7296 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` + +Vijay Das - adding this line to chage the README From ca44734184304e0a60f01898b968b8ad29968776 Mon Sep 17 00:00:00 2001 From: Vijay Das Date: Fri, 21 Sep 2018 13:32:37 -0400 Subject: [PATCH 2/2] made change to README --- README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index bbd7296..6a234d8 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 storage location for a file or collection of files + * Git - Version Control - git is an open source softwere (used by github for example) for tracking and reviewing changes in software versions or releases + * Clone - To make a local or remote copy from a repository + * Fork - To create a branch off a master project in order do work on that project without affecting the master project. It is way to manage contributions to a project + * History - a timestamped log of commits to a repository + * Staging - on a local system, the process by which a file is prepared to for a commit + * Remote - a repository (usually a clone to a machine separate from master) from which a developer modifies code + * Commit - the process of adding changes to code + * Push - sending code back to a repository from a local system to be recorded in the repository's commit history ## Steps to our Lamba School Git Flow 1. Fork repository @@ -21,3 +21,4 @@ 7. `git push` Vijay Das - adding this line to chage the README +Note: this is my second pull request, I had not completed assignment the first pull