Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
############################################# | |
# Push de la rama actual | |
git push origin $rama_actual | |
############################################# | |
# Volver a un commit anterior, descartando los cambios | |
git reset --HARD $SHA1 | |
############################################# | |
# Ver y descargar Ramas remotas |
$('#book').animate({ | |
opacity: 0.25, | |
left: '+=50', | |
height: 'toggle' | |
}, 5000, function() { | |
// Animation complete. | |
}); |
<?php | |
/** | |
* ACF has this fancy option to show ACF fields based on pages templates. | |
* One problem: Themosis templates are not registered as "default" WordPress templates. | |
* This file hooks into the acf filters and allows ACF to use the Themosis templates. | |
*/ | |
// add themosis templates | |
add_filter('acf/location/rule_values/page_template', 'add_themosis_templates_to_acf_rules'); | |
function add_themosis_templates_to_acf_rules($choices) |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
// No Security | |
{ | |
"rules": { | |
".read": true, | |
".write": true | |
} | |
} |