Files
snigdhaos-assets/push.sh
2024-06-03 06:00:12 +05:30

20 lines
183 B
Bash
Executable File

#!/bin/bash
# Iconized
pull_from_github(){
git pull
}
push_to_github() {
ezcommits
git push -u origin master
}
main(){
pull_from_github
push_to_github
}
main