Skip to content

Instantly share code, notes, and snippets.

@aleksandar-babic
Created January 7, 2018 10:13
Show Gist options
  • Save aleksandar-babic/ae0983967585ca4813b91d0acc110c04 to your computer and use it in GitHub Desktop.
Save aleksandar-babic/ae0983967585ca4813b91d0acc110c04 to your computer and use it in GitHub Desktop.
#!/bin/bash -
#===============================================================================
#
# FILE: gitPush.sh
#
# USAGE: ./gitPush.sh
#
# DESCRIPTION:
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: Aleksandar Babic (AB), alekski64@icloud.com
# ORGANIZATION: https://aleksandar.alfa-ing.com
# CREATED: 22.12.2017. 14:53:24
# REVISION: ---
#===============================================================================
set -o nounset # Treat unset variables as an error
git add .
git commit -m "$1"
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment