diff --git a/push b/push new file mode 100755 index 0000000..752d327 --- /dev/null +++ b/push @@ -0,0 +1,19 @@ +#!/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 \ No newline at end of file