♻️refactor(@iconized): create own script rather than commitizen

Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com>
This commit is contained in:
Abhiraj Roy
2024-06-03 01:27:04 +05:30
parent d890407ee5
commit 0b2a3d262a

21
gpush.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
# Iconized
pull_from_github(){
git pull
}
push_to_github() {
# git pull
git add .
ezcommits
git push -u origin master
}
main(){
pull_from_github
push_to_github
}
main