Skip to content

Instantly share code, notes, and snippets.

View ksaitor's full-sized avatar

Raman ksaitor

View GitHub Profile
# add this to your .bashrc or .aliases or .zshrc
ship() {
if [ $# -eq 0 ]; then
message="improvement" # Default commit message
else
message="$*" # Combine all arguments into a single commit message
fi
git commit -am"$message" # Commit changes