Skip to content

Instantly share code, notes, and snippets.

View MontiniCristian's full-sized avatar
🏂

Cristian MontiniCristian

🏂
View GitHub Profile
@AvalZ
AvalZ / gitignorant.sh
Last active December 13, 2022 14:27 — forked from packmad/gitignorant.sh
Git command for the lazy and for the win
#!/bin/bash
git pull
if [ "$1" != "" ]; then
git commit -am "$1"
else
git commit -am "$(curl -s whatthecommit.com/index.txt)"
fi