Skip to content

Instantly share code, notes, and snippets.

View mlg-'s full-sized avatar

Melissa Leigh Gore mlg-

View GitHub Profile
@mlg-
mlg- / .zshrc
Last active March 16, 2016 01:07 — forked from zach348/.zshrc
Zack's .zshrc
# Path to your oh-my-zsh installation.
export ZSH=/Users/admin/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="robbyrussell"
# Uncomment the following line to use case-sensitive completion.
@mlg-
mlg- / git-cheat-sheet.md
Last active March 10, 2016 17:50 — forked from EliseFitz15/git-cheat-sheet.md
git-cheat-sheet

##Intro to Git

##What is Git?

  • Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency

##What is GitHub?

  • GitHub is a web-based Git repository hosting service, which offers all of the revision control and source code management (SCM) functionality of Git.

##Initializing a Project with Git Make sure you are in the project's root directory! You can run pwd to see where you are if you're unsure.