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 - it is where your file/s being stored.
* Git - Version Control - it is one of the most popular version control tools that programmers/software engineering organizations use for their projects or codebases.
* Clone - downloads the existing remote repository to your local computer.
* Fork - is the act of copying a repository which allows you to work on and modify that forked repo without messing it up.
* History - all of the previous commits to your project.
* Staging - your file is waiting and ready to commit.
* Remote - repositories that are not on our local computer are referred as remote repos and they are hosted somewhere, usually online like at Github.com
* Commit - record changes to the repository.
* Push - uploads or "pushes" all the commits to the origin (remote repo)

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