Skip to content

Instantly share code, notes, and snippets.

View mf81bln's full-sized avatar
:octocat:
'cause I'm happy

Michel mf81bln

:octocat:
'cause I'm happy
View GitHub Profile
@mf81bln
mf81bln / delete_local_branches.sh
Created August 7, 2020 15:20 — forked from TSMMark/delete_local_branches.sh
Delete local branches that don't exist remotely
git fetch --all -p; git branch -vv | grep ": gone]" | awk '{ print $1 }' | xargs -n 1 git branch -D
/* Click open/close Dropdown in pure CSS */
/* Disclaimer: Not the most semantic
thing in the universe. */
/* Forked from original idea
http://jsfiddle.net/paullferguson/Sv54G/3/ */
.tabs {
position: relative;