SagXD@lemm.ee to Programmer Humor@programming.dev · 8 months agoMy Git Knowledgelemm.eeimagemessage-square178fedilinkarrow-up11.12Karrow-down125
arrow-up11.1Karrow-down1imageMy Git Knowledgelemm.eeSagXD@lemm.ee to Programmer Humor@programming.dev · 8 months agomessage-square178fedilink
minus-squareJATtho@sopuli.xyzlinkfedilinkarrow-up4·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"