Skip to content

Instantly share code, notes, and snippets.

@usmanity
Created March 28, 2024 15:57
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 usmanity/1cbf8af54a32107bc3113f5dfca22d1a to your computer and use it in GitHub Desktop.
Save usmanity/1cbf8af54a32107bc3113f5dfca22d1a to your computer and use it in GitHub Desktop.
quick commit
function commit() {
local commit_message
if [[ $# -eq 0 ]]; then
echo "Usage: commit <message>"
return 1
fi
commit_message="${*:1}"
git commit -am "$commit_message"
}
alias c=commit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment