Skip to content

Instantly share code, notes, and snippets.

View dlstadther's full-sized avatar

Dillon Stadther dlstadther

View GitHub Profile
@dlstadther
dlstadther / gitflow-breakdown.md
Created July 25, 2018 13:56 — 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