Skip to content

Instantly share code, notes, and snippets.

View niklatkin's full-sized avatar
🐢
I may be slow to respond.

Niko Latkin niklatkin

🐢
I may be slow to respond.
  • Detroit, MI
View GitHub Profile
@freetonik
freetonik / css_reset.css
Created October 19, 2017 10:11
Eric Meyer’s CSS Reset 2.0
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,

Git Cheat Sheet

Basic commands

git init Creates a new git repository in the directory

git add <file name> Adds a specific file to staging

git add . or git add -A Adds the full directory and its contents to staging