Skip to content

Instantly share code, notes, and snippets.

@jobran41
jobran41 / gitflow-breakdown.md
Created March 20, 2023 10:40 — forked from JamesMGreene/gitflow-breakdown.md
`git flow` vs. `git`: 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

@jobran41
jobran41 / array_dupplicate_counter.js
Created December 20, 2017 16:57 — forked from ralphcrisostomo/array_dupplicate_counter.js
Javascript: Count duplicates in an array
/**
Problem:
You have a javascript array that likely has some duplicate values and you would like a count of those values.
Solution:
Try this schnippet out.
*/