See how a minor change to your commit message style can make a difference. Examples
ℹ️ git-conventional-commits A CLI util to ensure this conventions and generate changelogs
#!/bin/bash | |
# Logout current GitHub credentials and remove global user.name, user.email | |
echo -e "host=github.com\nprotocol=https\n" | git credential-osxkeychain erase | |
git config --unset-all --global user.name | |
git config --unset-all --global user.email |
See how a minor change to your commit message style can make a difference. Examples
ℹ️ git-conventional-commits A CLI util to ensure this conventions and generate changelogs
// igrasias edom script version 18/01/23 | |
// presses all radio button inputs with a value of 'Sangat Puas' | |
var opt = document.getElementsByClassName("opt"); | |
for(var i = 0; i < opt .length; i++){ | |
if(opt [i].parentElement.nextElementSibling.innerHTML === 'Sangat puas'){ | |
opt [i].click(); | |
} | |
} | |
// if there is a text field, gives the text field value with invisible space | |
if (document.querySelector('textarea')) { |