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