Skip to content

Instantly share code, notes, and snippets.

@mishelen
mishelen / git-tag-delete-local-and-remote.sh
Created May 20, 2018 09:12 — forked from mobilemind/git-tag-delete-local-and-remote.sh
how to delete a git tag locally and remote
# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName
@mishelen
mishelen / ES6.sublime-build
Created March 31, 2016 21:38 — forked from therealklanni/ES6.sublime-build
ES6 REPL in Sublime Text
{
"cmd": ["/usr/local/bin/babel-node $file"],
"shell": true,
"selector": "*.js"
}
@mishelen
mishelen / mixin-serious-px-and-rem.scss
Created February 20, 2014 09:32 — forked from larrybotha/_px-and-rem.scss
Работа с Ремами
// This mixin outputs a property with rem units and a px fallback.
// Values passed without units are used as multipliers for the final
// rem and px values, all other units are output without modification.
// $base-font-size represents the root value of the document font-size
// in pixels.
//
// i.e. html { font-size: 100%;} // -> 16px
// Usage:
// @include px-and-rem([property], [multiplier | explicit value] [, ...]);