Files
Snigdha-OS.github.io/push.sh
2024-06-05 04:46:45 +05:30

20 lines
247 B
Bash
Executable File

#!/bin/bash
# Author : Abhiraj Roy (Iconized)
# Author URL : https://iconized.github.io
pull_from_github(){
git pull
}
push_to_github() {
ezcommits
git push -u origin master
}
main(){
pull_from_github
push_to_github
}
main