Skip to content

Instantly share code, notes, and snippets.

@manolenso
Created January 31, 2014 08:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manolenso/8728205 to your computer and use it in GitHub Desktop.
Save manolenso/8728205 to your computer and use it in GitHub Desktop.
script bin.sh for quick commit
#!/usr/bin/env bash
# for quick commit
#
#
git add .
echo "Give commit Name:"
read $commit
git commit -m '$commit'
git push
git status
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment