New backup 2024-06-15 12:30:02

This commit is contained in:
Penelope Gwen 2024-06-15 12:30:02 -06:00
parent 3b3062b196
commit 462bd51bc7

View file

@ -38,6 +38,21 @@ alias adb_root="adb shell -t exec run-as com.termux files/usr/bin/bash -c 'su -'
alias dfh="df -h | grep -v 'tmpfs'"
#dev environment toolbox with proper term env var
alias devbox="TERM=xterm-256color toolbox enter debian-sid-dev"
#git shortcut to quickly push all changes with comment
pushall() {
git add .
git commit -m "${1}"
git push origin
bool_tag="y"
read -p "tag as well? (Y/n)" bool_tag
case "${bool_tag}" in
[yY]|[yY][eE][sS])
read -p "Tag version: " ver_tag
git tag -a "${ver_tag}"
git push origin "${ver_tag}"
;;
esac
}
#User Env Vars
export DEBEMAIL="support@pogmom.me"