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 a directory containing all of the files that make up a software package. They contain each file's revision history and there can be multiple collaborators.
* Git - Version Control - Tracks changes of software life cycle
* Clone - Clones a repository so that changes can be made locally
* Fork - Branches a repository whereby a repo comes under another user's control within his/her account. Pull requests can be made to request the parent repo adopt the changes made in the forked repo.
* History - All changes made to a repo
* Staging - A branch of a repo used prior to production
* Remote - Refers to a repo on the github server not locally
* Commit - Prepares changes to be pushed to the Github server
* Push - Pushes changes to the remote server

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