Skip to content

Instantly share code, notes, and snippets.

@scibel
scibel / .env
Created August 12, 2020 22:48 — forked from skatkov/.env
Progressive mailchimp subscription on Netlify
MAILCHIMP_API_KEY="...-us19"
MAILCHIMP_LIST_ID="..."
@scibel
scibel / gitflow-breakdown.md
Created May 23, 2020 15:05 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository