mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-06 20:55:18 +02:00
20 lines
247 B
Bash
Executable File
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 |