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
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 repository is like a folder for your project that contains the project files and revision history.
* Git - Version Control - System that records changes to files over time.
* Clone - creating a copy of a git repository.
* Fork - copy of a repository that allows you to experiment with changes without affecting the original project.
* History - Git stores history as a graph of snapshots called Commits.
* Staging - The step before the commit process in Git.
* Remote - Basically a bookmark for a different repository from which you may wish to pull or push code.
* Commit - or "revision" is an individual change to a file or set of files.
* Push - Pushing is how you transfer commits from your local repository to a local repository.

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