Skip to content

Instantly share code, notes, and snippets.

@mgilarmo
mgilarmo / Common-Currency.json
Created April 30, 2020 16:16 — forked from ksafranski/Common-Currency.json
Common Currency Codes in JSON
{
"USD": {
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars"
},
@mgilarmo
mgilarmo / gitflow-breakdown.md
Created July 5, 2019 15:42 — 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