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
20 changes: 11 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 area contaning the files for a project.
* Git - Version Control - A version control file system that allows for collaboration.
* Clone - To duplicate a project.
* Fork - To make a separate branch of a project, resulting in cloning and then rebranching.
* History - The changes made to files, including the deletion of files.
* Staging - Preparing a file that will be committed.
* Remote - Content that isn't on a local branch/computer/server.
* Commit - Commits the changes to the files to the file on the VCS.
* Push - Pushes the changes to the selected branch.

## Steps to our Lamba School Git Flow
1. Fork repository
Expand All @@ -19,3 +19,5 @@
5. `git status` to check what is staged
6. `git commit -m 'made changes to the Readme'`
7. `git push`

I am editing this file, as no other content was requested.