.
On Mon, 2008-09-15 at 17:41 -0700, DW Dennis Wheeler wrote:
> or you can simply use
> svnversion -c
> on your working directory
> (both before and after an 'svn update' for starting and ending revision
> numbers to generate changelogs for the build)
>
>
> &g
Use svn info on the repository itself (not your working copy). Something
like:
svn info $( svn info | grep 'Root:' | awk -F': ' '{print $2}' ) \
| grep Revision | awk '{print $2}'
On Tue, 2008-09-09 at 23:54 -0700, Fu-Tung Cheng wrote:
> Hi,
>
> I am trying to figure out which command I can
Use svn info on the repository itself (not your working copy). Something
like:
svn info $( svn info | grep 'Root:' | awk -F': ' '{print $2}' ) \
| grep Revision | awk '{print $2}'
On Tue, 2008-09-09 at 23:54 -0700, Fu-Tung Cheng wrote:
> Hi,
>
> I am trying to figure out which command I can