diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-03-16 10:40:14 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-03-16 10:40:14 -0300 |
commit | d68557b61bab14cc0d56868a7745dccd548ee4a7 (patch) | |
tree | 34a9ff938328935abfcf769b3eed65c6be4480bd | |
parent | 1c8afde62ea550c6db0de80d1873feff5e3c7038 (diff) | |
download | apps-d68557b61bab14cc0d56868a7745dccd548ee4a7.tar.gz apps-d68557b61bab14cc0d56868a7745dccd548ee4a7.tar.bz2 |
Inception: version action shows also origin/master branch
-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 |