Skip to content

Instantly share code, notes, and snippets.

View georgematos's full-sized avatar
🎯
Focusing

George Matos georgematos

🎯
Focusing
View GitHub Profile
@CoralSilver
CoralSilver / gitflow.md
Created June 19, 2018 13:25 — forked from sheremetat/gitflow.md
Git rebase workflow

Step 1: Checkout a new working branch from updated master

 git checkout -b <branchname>

Step 2: Make Changes

 git add
 git commit -m "description of changes"

Step 3: Sync with remote