SagXD@lemm.ee to Programmer Humor@programming.dev · 8 months agoMy Git Knowledgelemm.eeimagemessage-square163fedilinkarrow-up1235arrow-down16
arrow-up1229arrow-down1imageMy Git Knowledgelemm.eeSagXD@lemm.ee to Programmer Humor@programming.dev · 8 months agomessage-square163fedilink
minus-squareJATtho@sopuli.xyzlinkfedilinkarrow-up3·8 months agoThe day I configured git to use Geany for commit messages with a separate config specifically tuned for this, it improved my life by 300% ~$ cat ~/bin/gitedit #!/bin/sh exec /usr/bin/geany -i -s -t -c ~/.config/gitgeany $@ Then in git config: git config --global core.editor "gitedit"
The day I configured
git
to use Geany for commit messages with a separate config specifically tuned for this, it improved my life by 300%~$ cat ~/bin/gitedit #!/bin/sh exec /usr/bin/geany -i -s -t -c ~/.config/gitgeany $@
Then in git config:
git config --global core.editor "gitedit"