dotfiles/script/gitsha1yank

13 lines
193 B
Plaintext
Raw Normal View History

2021-06-18 13:13:57 +00:00
#!/usr/bin/env bash
#
# Copy the last Git SHA1 to the clipboard
set -e
if [ "$1" = "-s" ]; then
2021-06-18 13:13:57 +00:00
args="--short"
fi
# TODO: fix for non-Darwin
git rev-parse $args HEAD | tr -d '\n' | pbcopy