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

## Terms for learning Git
* Repository -
* Git - Version Control -
* Clone -
* Fork -
* History -
* Staging -
* Remote -
* Commit -
* Push -
* Repository - A place where the history of your work is stored.
* Git - Version Control - A version control system for tracking changes in computer files and coordinating work on those files among multiple people.
* Clone - A Git command line utility which is used to target an existing repository and create a clone, or copy of the target repository.
* Fork - To take the source from someone's repository at certain point in time, and apply your own diverging changes to it.
* History - A list of all the changes to the files in the repository along with metadata about the user who changed it and when.
* Staging - When staging, you are preparing and organizing a commit.
* Remote - The version of something that is hosted on a server, most likely GitHub.
* Commit - A commit, or "revision", is an individual change to a file (or set of files).
* Push - Pushing refers to sending your committed changes to a remote repository, such as a repository hosted on GitHub.

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