5 lines
213 B
Bash
Executable file
5 lines
213 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# A hook script that is called after a successful
|
|
# commit is made 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
|