11 lines
417 B
Bash
11 lines
417 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
#=== 'prev-commit' solution by o_O Tync
|
||
|
#commit_hash=$(git rev-parse --verify HEAD)
|
||
|
commit=$(git log -1 --pretty="%H%n%ci") # hash \n date
|
||
|
commit_date=$(echo "$commit" | head -2 | tail -1) # 2010-12-28 05:16:23 +0300
|
||
|
commit_hash=$(echo "$commit" | head -1)
|
||
|
echo "$(git rev-parse HEAD)" > /tmp/test
|
||
|
echo "prev_commit='$commit_hash'\ndate='$commit_date'\nbranch='$branch'\n" > /tmp/test.txt
|