显示svn changelog on";svn up";

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示svn changelog on";svn up";相关的知识,希望对你有一定的参考价值。

updates (svn up) a working copy and displays the changes
  1. # Get the current revision of a repository
  2. svn_revision()
  3. {
  4. svn info $@ | awk '/^Revision:/ {print $2}'
  5. }
  6.  
  7. # Does an svn up and then displays the changelog between your previous
  8. # version and what you just updated to.
  9. svn_up_and_log()
  10. {
  11. local old_revision=`svn_revision $@`
  12. local first_update=$((${old_revision} + 1))
  13. svn up -q $@
  14. if [ $(svn_revision $@) -gt ${old_revision} ]; then
  15. svn log -v -rHEAD:${first_update} $@
  16. else
  17. echo "No changes."
  18. fi
  19. }

以上是关于显示svn changelog on";svn up";的主要内容,如果未能解决你的问题,请参考以下文章

Svn 1.5.x 与最新版本

CHANGELOG 的实现

Linux - SVN的基本操作

桌面图标上出现git的附加标识,如下图,怎么去掉?

ruby 代码转储,显示我们如何使用Trello API生成“Changelog Weekly”

ruby 代码转储,显示我们如何使用Trello API生成“Changelog Weekly”