Skip to content

Instantly share code, notes, and snippets.

View The-Don-Himself's full-sized avatar

Don Omondi The-Don-Himself

View GitHub Profile
@The-Don-Himself
The-Don-Himself / gitflow-breakdown.md
Created October 20, 2018 02:28 — 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