diff options
Diffstat (limited to 'inception')
-rwxr-xr-x | inception | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -110,7 +110,16 @@ EOF # Version information function inception_version { + echo "master branch:" + echo "==============" + echo "" ( cd $DIRNAME && git log --show-signature -n 1 ) + + echo "" + echo "origin/master branch:" + echo "=====================" + echo "" + ( cd $DIRNAME && git log --show-signature -n 1 --branches=origin/master ) } # Fetch |