removing commitizen (#11)

This commit is contained in:
Abhiraj Roy
2024-06-03 01:28:09 +05:30
committed by GitHub
2 changed files with 25 additions and 1 deletions

5
.gitignore vendored
View File

@@ -1,3 +1,6 @@
# Removing non essentails to git ignore
*.zst
*.sig
*pkg
*src
*src

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