mirror of
https://github.com/simh/simh.git
synced 2026-01-11 23:52:58 +00:00
7 lines
205 B
Bash
Executable File
7 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# A hook script that is called after a successful merge
|
|
# to record the commit-id in the working directory.
|
|
git log -1 --pretty="SIM_GIT_COMMIT_ID %H%nSIM_GIT_COMMIT_TIME %aI" >.git-commit-id
|
|
|