+++ /dev/null
-#!/bin/bash
-
-FILENAME='version.txt'
-
-exec 1>&2
-REPONAME=`basename \`git rev-parse --show-toplevel\``
-BRANCH=`git rev-parse --abbrev-ref HEAD`
-SHORTHASH=`git log --pretty=format:'%h' -n 1`
-REVCOUNT=`git log --oneline | wc -l`
-LATESTTAG=`git describe --tags --abbrev=0`
-
-VERSION="Repository:$REPONAME ActiveBranch:[$BRANCH] `if [ -n \"$LATESTTAG\" ]; then echo \"PrecedingRelease:$LATESTTAG\"; fi` PrecedingRevision:$REVCOUNT($SHORTHASH)"
-echo $VERSION > $FILENAME
-git update-index --assume-unchanged $FILENAME
\ No newline at end of file
BRANCH=`git rev-parse --abbrev-ref HEAD`
SHORTHASH=`git log --pretty=format:'%h' -n 1`
REVCOUNT=`git log --oneline | wc -l`
+CURRENTTIME=`date`
LATESTTAG=`git describe --tags --abbrev=0`
-VERSION="Repository:$REPONAME ActiveBranch:[$BRANCH] `if [ -n \"$LATESTTAG\" ]; then echo \"PrecedingRelease:$LATESTTAG\"; fi` PrecedingRevision:$REVCOUNT($SHORTHASH)"
+VERSION="Repository:$REPONAME ActiveBranch:[$BRANCH] `if [ -n \"$LATESTTAG\" ]; then echo \"PrecedingRelease:$LATESTTAG\"; fi` PrecedingRevision:$REVCOUNT($SHORTHASH) LatestCommit:$CURRENTTIME"
echo $VERSION > $FILENAME
git update-index --no-assume-unchanged $FILENAME
git add $FILENAME
\ No newline at end of file
BRANCH=`git rev-parse --abbrev-ref HEAD`
SHORTHASH=`git log --pretty=format:'%h' -n 1`
REVCOUNT=`git log --oneline | wc -l`
+CURRENTTIME=`date`
LATESTTAG=`git describe --tags --abbrev=0`
-VERSION="Repository:$REPONAME ActiveBranch:[$BRANCH] `if [ -n \"$LATESTTAG\" ]; then echo \"PrecedingRelease:$LATESTTAG\"; fi` PrecedingRevision:$REVCOUNT($SHORTHASH)"
+VERSION="Repository:$REPONAME ActiveBranch:[$BRANCH] `if [ -n \"$LATESTTAG\" ]; then echo \"PrecedingRelease:$LATESTTAG\"; fi` PrecedingRevision:$REVCOUNT($SHORTHASH) LatestCommit:$CURRENTTIME"
echo $VERSION > $FILENAME
git update-index --no-assume-unchanged $FILENAME
git add $FILENAME
\ No newline at end of file
-Repository:neuron-kernel ActiveBranch:[master] PrecedingRevision:34(6ef8ca8)
+Repository:neuron-kernel ActiveBranch:[master] PrecedingRevision:35(f15308f) LatestCommit:Tue May 22 16:28:28 CEST 2018