#!/bin/bash

vcsname="$(./vcs-name)"

if [ "$vcsname" == "git" ]
then
git log --first-parent --pretty=oneline | wc -l
exit 0
fi

date "+%Y%m%d"

