Skip to content

Instantly share code, notes, and snippets.

View khari998's full-sized avatar

Khari Lane khari998

View GitHub Profile
@khari998
khari998 / gitflow-breakdown.md
Created September 1, 2020 21:53 — 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