unmerged_whatever.bat 469 B

12345678910111213
  1. @echo off
  2. rem Copyright Beman Dawes 2011
  3. rem Distributed under the Boost Software License, Version 1.0. See http://www.boost.org/LICENSE_1_0.txt
  4. if not %1$==$ goto usage_ok
  5. echo Usage: unmerged_whatever path-from-root [svn-options]
  6. echo Options include --summarize to show paths only. i.e. suppresses line-by-line diffs
  7. goto done
  8. :usage_ok
  9. svn diff %2 %3 %4 %5 %6 http://svn.boost.org/svn/boost/branches/release/%1 ^
  10. http://svn.boost.org/svn/boost/trunk/%1
  11. :done
粤ICP备19079148号