Steps required to install Homebrew on MX Linux (and other Debian-based distros)
-
Update apt cache and optionally do a full upgrade
apt update
apt full-upgrade # optional, reboot if needed
push(){ | |
if ! buffalo test ./... ; then | |
echo "Dude, your tests are failing, I can not push this branch" | |
return | |
fi | |
if ! golangci-lint run -v ; then | |
echo "Dude, your golangci linter is failing, I can not push this branch" | |
return | |
fi |
# 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 |
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
github = pksunkara | |
[core] | |
editor = nvim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
pager = delta | |
[column] | |
ui = auto |