Git log specific to a branch
git log --graph --abbrev-commit --decorate --oneline --first-parent development
Sep 3, 20211 min read
Search for a command to run...
git log --graph --abbrev-commit --decorate --oneline --first-parent development
$ git branch -d
git clean --force -d -x git reset --hard
Algorithm to find the closest match (Closest predefined screen dimension) // xs sm md lg xl var screenDims = [375, 540, 720, 960, 1140]; function getClosestScreenWidth(input) { return screenDims.reduce((a, b) => { return Math.abs(b - input) < Math....
find . -name "node_modules" -exec rm -rf '{}' +