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

Keybase proof

I hereby claim:

  • I am jobran41 on github.
  • I am jobran41 (https://keybase.io/jobran41) on keybase.
  • I have a public key ASBTdl_a1M7Qlbu4ktV_vFcF9ZoOa2LLBrQ5-eWMKVRT_go

To claim this, I am signing this object:

@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.
*/