Conversation
My panic!() messages start to degrade to the quality of my commit messages
2
0
1

@buherator that just gave me a „good“ idea for private commit messages (where you use git for safe points). Shell alias ‚commit’ to git commit -m „x“ 😁
If you‘re sophisticated you can also automatically list all the changed files in the message or something 😉

1
1
1

@buherator it’s the human touch

0
1
0

@buherator

Totally unhardened version of the second one (setting the names of the changed files as the git commit message):

alias commitm='git commit -m "$(git diff --cached --name-only | sed "s|.*/||" | paste -sd, - | cut -c1-72)"'

Will the messages contain very useful information? Unlikely. But you won't have to make up a random commit message for your personal repo. Sometimes you just want to commit 😆

1
1
0
@ulldma or you could pipe fortune or cowsay? :)
1
0
1

@buherator Yes, I think you're onto something, inspirational quotes as commit messages 😉

"Do not fear failure but rather fear not trying."

1
1
1