Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

John Kouris - Git Fu Homework #124

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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 contains all of the project files and stores each file's revision history.
* Git - Version Control - An open source program for tracking changes in text fiels and is the core technology that GitHub is built on top of
* Clone - a copy of a repository that lives on your computer instead of on a website's server somewhere
* Fork - a personal copy of another user's repository that lives on your account
* History - a list of all the changes made to the repository
* Staging - a simple file, generally contained in your Git directory, that stores information about what will go into your next commit
* Remote - the version of something that is hosted on a server, most likely GitHub
* Commit - an individual change to a file (or set of files)
* Push - sending your committed changes to a remote repository

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