diff --git a/README.md b/README.md index c4dcbed..9ebda50 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 area contaning the files for a project. + * Git - Version Control - A version control file system that allows for collaboration. + * Clone - To duplicate a project. + * Fork - To make a separate branch of a project, resulting in cloning and then rebranching. + * History - The changes made to files, including the deletion of files. + * Staging - Preparing a file that will be committed. + * Remote - Content that isn't on a local branch/computer/server. + * Commit - Commits the changes to the files to the file on the VCS. + * Push - Pushes the changes to the selected branch. ## Steps to our Lamba School Git Flow 1. Fork repository @@ -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 am editing this file, as no other content was requested.