Skip to content

Instantly share code, notes, and snippets.

View Leland's full-sized avatar
:shipit:
ship't

Leland Clemmons Leland

:shipit:
ship't
View GitHub Profile
@Leland
Leland / gitflow-breakdown.md
Last active August 1, 2017 01:22 — 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

gitflow | git