mirror of
https://github.com/Snigdha-OS/snigdhaos-kernel-switcher.git
synced 2025-09-05 22:56:37 +02:00
19 lines
182 B
Bash
Executable File
19 lines
182 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 |