mirror of
https://github.com/boostorg/release-tools.git
synced 2026-01-19 04:42:10 +00:00
18 lines
738 B
Batchfile
18 lines
738 B
Batchfile
@echo off
|
|
rem Copyright Beman Dawes 2009
|
|
rem Distributed under the Boost Software License, Version 1.0. See http://www.boost.org/LICENSE_1_0.txt
|
|
if not %1$==$ goto usage_ok
|
|
echo Usage: unmerged library-name [svn-options]
|
|
echo Options include --summarize to show paths only. i.e. suppresses line-by-line diffs
|
|
goto done
|
|
|
|
:usage_ok
|
|
svn diff %2 %3 %4 %5 %6 http://svn.boost.org/svn/boost/branches/release/boost/%1.hpp ^
|
|
http://svn.boost.org/svn/boost/trunk/boost/%1.hpp
|
|
svn diff %2 %3 %4 %5 %6 http://svn.boost.org/svn/boost/branches/release/boost/%1 ^
|
|
http://svn.boost.org/svn/boost/trunk/boost/%1
|
|
svn diff %2 %3 %4 %5 %6 http://svn.boost.org/svn/boost/branches/release/libs/%1 ^
|
|
http://svn.boost.org/svn/boost/trunk/libs/%1
|
|
|
|
:done
|