Tagged Git Commit Log
Here is an awk augmented git log that will provide a list of your tagged git commits with an abbreviated commit hash and the subject of the commit:
git log --oneline --decorate=short | awk '/tag/ {print substr($3,0,(length($3)-1)) "\t" $1 "\t" ($1=$2=$3="") $0}'Example
$ git log --oneline --decorate=short | awk '/tag/ {print substr($3,0,(length($3)-1)) "\t" $1 "\t" ($1=$2=$3="") $0}'
v1.3.3       6d2a491       Refactored text handling
v1.3.2       7e35d5b       Merge branch 'development'
v1.3.1       307b457       Updated Python 2 vs 3 interpreter check
v1.3.0       61f43bf       Added support for Python 3.x
...   Written by Chris Simpkins
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
 #Shell 
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#

 
 
 
 
