3 lines
142 B
Bash
Executable file
3 lines
142 B
Bash
Executable file
#!/bin/sh
|
|
# Save HEAD commit hash to "snap" file in git dir
|
|
echo Snapped $(git rev-parse HEAD | tee "$(git rev-parse --git-path ${1:-snap})")
|