We are each gifted in a unique and important way. It is our privilege and our adventure to discover our own special light
This commit is contained in:
parent
5a016d14ed
commit
16c4cc9094
@ -98,3 +98,14 @@ countdown() {
|
||||
sleep 0.1
|
||||
done
|
||||
}
|
||||
# Random quote to avoid making useful commit messages
|
||||
function rgcm() {
|
||||
message=$(curl -s https://quotes.rest/qod | jq -r '.contents.quotes[0].quote')
|
||||
if [[ -z $message ]]; then
|
||||
echo "Error: Failed to retrieve a random commit message"
|
||||
return 1
|
||||
fi
|
||||
git add .
|
||||
git commit -m "$message"
|
||||
echo "Git commit submitted with message: $message"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user