Skip to content

Instantly share code, notes, and snippets.

View tb0hdan's full-sized avatar
😎
Go is awesome!

Bohdan Turkynevych tb0hdan

😎
Go is awesome!
  • SELF
  • Ukraine, Kyiv
View GitHub Profile
@tb0hdan
tb0hdan / gitflow.md
Created November 16, 2018 16:48 — 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