Skip to content

Instantly share code, notes, and snippets.

View felipevr's full-sized avatar

Felipe V. Rigo felipevr

View GitHub Profile
@felipevr
felipevr / gitflow-breakdown.md
Last active March 28, 2022 12:05 — forked from ubante/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