Skip to content

Instantly share code, notes, and snippets.

View braian125's full-sized avatar

Brian Vanegas Parra braian125

View GitHub Profile
@braian125
braian125 / gitflow-breakdown.md
Created February 27, 2018 22:11 — 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