显示svn changelog on";svn up";
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示svn changelog on";svn up";相关的知识,希望对你有一定的参考价值。
updates (svn up) a working copy and displays the changes
# Get the current revision of a repository svn_revision() { svn info $@ | awk '/^Revision:/ {print $2}' } # Does an svn up and then displays the changelog between your previous # version and what you just updated to. svn_up_and_log() { local old_revision=`svn_revision $@` local first_update=$((${old_revision} + 1)) svn up -q $@ if [ $(svn_revision $@) -gt ${old_revision} ]; then svn log -v -rHEAD:${first_update} $@ else echo "No changes." fi }
以上是关于显示svn changelog on";svn up";的主要内容,如果未能解决你的问题,请参考以下文章