5 lines
161 B
Bash
Executable file
5 lines
161 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="%H" >.git-commit-id
|