Billiam bio photo

Billiam

"Hey, sorry I haven't updated in a while. Life's been crazy, but I'll be back soon."

Etsy Github Itch.io Printables Mastodon Twitter
Feed

Copy Last Git Hash

Show the most recent git commit hash, and copy it to the clipboard:

Linux

git rev-parse HEAD | tee xclip -selection c

Windows (mingw/cygwin)

git rev-parse HEAD | tee /dev/clipboard

Mac

git rev-parse HEAD | tee pbcopy