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