/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

tarneo.fr
| | hjr265.me
3.3 parsecs away

Travel
| | Git has this great feature that I think is well-known but under-used. I am talking about Git hooks. With Git hooks, you can run scripts during different Git actions. Like this one: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #!/bin/sh GOFILES=`git diff --name-only --cached | grep -e '.go$' | grep -ve 'vendor/'` UNFMTFILES=() for f in $GOFILES; do if [ -n "`gofmt -l -s .
| | claytonerrington.com
2.6 parsecs away

Travel
| | Quick way to get the status of multiple repositories at a time
| | anishathalye.com
2.9 parsecs away

Travel
| | An asynchronously updating shell prompt can lead to a smoother user experience.
| | www.simpleprimate.com
17.8 parsecs away

Travel
| The other day I found myself having serious trouble publishing a new post to my blog. I was able to solve the problem through the use of Git rebase and I thought I would share my experience in case somebody else happens to go through the same thing.