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
22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
# 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 database containing a set of files and their modification history
* Git - Version Control - Version control is software for managing a set of files
and tracking their change history. Git is a particular distributed version
control system.
* Clone - To clone is to make a local (remote) copy of a repository
* Fork - To fork is to create a new repository as an image of another repository
* History - The history is a record of all changes commited to the files in a repository
* Staging - Staging is the process of marking a file which has been modified to be
included in the next commit
* Remote - A remote is a local copy of a repository
* Commit - To commit is to save a record of changes to any files that have been modified
and placed in the staging area
* Push - To push is to transmit the current state of the local remote up to the repository

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