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 - it is like a project's folder with files and there revision history
* Git - Version Control - Version control is a system that records changes to a file or set of files over time so that we can recall specific versions later
* Clone - to get a copy of an existing Git repo creating a local copy of the code
* Fork - copy of a repo
* History - all the commits to the project
* Staging - step before the commit process, staged files can be edited
* Remote - stuff that hosted on an other than local server
* Commit - an individual change to a file or set of files
* Push - send the committed changes to a remote repo


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