diff --git a/.gitignore b/.gitignore index 51ef16dd..d2bd27ad 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# Removing non essentails to git ignore + *.zst +*.sig *pkg -*src +*src \ No newline at end of file diff --git a/gpush.sh b/gpush.sh new file mode 100755 index 00000000..7e3faa7c --- /dev/null +++ b/gpush.sh @@ -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 \ No newline at end of file