Skip to content

Instantly share code, notes, and snippets.

@sungiven
Last active January 20, 2024 09:01
Show Gist options
  • Save sungiven/bdf26801cda8af19817e33afa247cca2 to your computer and use it in GitHub Desktop.
Save sungiven/bdf26801cda8af19817e33afa247cca2 to your computer and use it in GitHub Desktop.
gush.sh
#!/bin/bash
if [ -z "$1" ]; then
echo "Usage: $0 <comment>"
exit 1
fi
git add .
git commit -m "$1"
git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment