https://github.com/JuliaLang/julia
Raw File
Tip revision: fa52609644e0b9162d87fa19e7a86e038c044ddb authored by Tony Kelman on 18 September 2015, 17:51:35 UTC
Tag 0.4.0-rc2
Tip revision: fa52609
commit-name.sh
#!/bin/bash
# This file is a part of Julia. License is MIT: http://julialang.org/license

last_tag=$(git describe --tags --abbrev=0)
echo -n "0.4.0-dev+"
git rev-list ${1-HEAD} ^$last_tag | wc -l | sed -e 's/[^[:digit:]]//g'
back to top