Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# 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 collection of files for a project, like the file folder on your computer except it is stored on a server so everyone can access it.
* Git - a program for tracking changes made to files
* Version Control - a system of recording changes so you can access different versions at a later date
* Clone - a copy of a repository that lives on your computer
* Fork - a personal copy of a repository that lives on your account so changes can be made without affecting the original
* History - a record of the various updates and changes made to a repository
* Staging - getting a file prepared to send back to the main repository
* Remote - a version that has been saved to a remote server ie GitHub and can connect to clones so changes can sync
* Commit - a revision or saved version of the files
* Push - sending your changes back to the repository

## Steps to our Lamba School Git Flow
1. Fork repository
Expand Down