The efficiency of svnlook changed

2024-07-24 Thread zongganli(李宗淦)
Hello, I just found that in revision 1303856 https://svn.apache.org/viewvc?view=revision&revision=1303856, it sets the send_deltas in svnlook to TRUE.  Actually, on our svn server, we set send_deltas=FALSE, as our repos are so large, which takes a long time to run svnlook changed. For exa

Re: svnlook changed doesn't include all of the files that are part of the commit

2015-11-23 Thread Philip Martin
to the new location. You might want to use --copy-into to see which changes are copies. You can use 'svnlook tree' to get the copied tree. If a copy has additional modification beyond a simple copy then 'svnlook changed' will show them. Adds and copies are different and th

RE: svnlook changed doesn't include all of the files that are part of the commit

2015-11-23 Thread Bert Huijben
> -Original Message- > From: Hartleroad, James [IT] [mailto:james.hartler...@sprint.com] > Sent: maandag 23 november 2015 17:24 > To: Ivan Zhakov > Cc: users@subversion.apache.org > Subject: RE: svnlook changed doesn't include all of the files that are part of &g

RE: svnlook changed doesn't include all of the files that are part of the commit

2015-11-23 Thread Hartleroad, James [IT]
look at the svnbook.red-bean.com for 1.8, http://svnbook.red-bean.com/en/1.8/svn.ref.svnlook.c.changed.html, I got the impression that new files added in a new directory would be shown. If I run svnlook on the initial change, not the merge than the files are shown. $ svnlook changed -r5589 /data

RE: svnlook changed doesn't include all of the files that are part of the commit

2015-11-23 Thread Bert Huijben
Diff reports copies of directories as adds of the individual files, while svnlook changed reports a copy on the root and only interesting changes below that. Just like how 'svn status' would have reported it before the commit. Bert From: Hartleroad,

Re: svnlook changed doesn't include all of the files that are part of the commit

2015-11-23 Thread Ivan Zhakov
On 23 November 2015 at 17:29, Hartleroad, James [IT] wrote: > Why doesn’t svnlook changed show all of the files that are part of the > commit? > > A developer created a new directory with two files in a branch and the > branch was merged into another branch. When running svnlo

svnlook changed doesn't include all of the files that are part of the commit

2015-11-23 Thread Hartleroad, James [IT]
Why doesn't svnlook changed show all of the files that are part of the commit? A developer created a new directory with two files in a branch and the branch was merged into another branch. When running svnlook it shows the directory was added, but not the included files. If I run a svn

Re: svnlook changed

2011-12-30 Thread Ryan Schmidt
On Dec 30, 2011, at 14:27, wrote: > I am trying to figure out a way to get a list of files that have changed in a > particular code line (branch or project) since a date or a revision. Svnlook > changed does not appear to accept a range of revisions. > > gold:/opt/subve

svnlook changed

2011-12-30 Thread Joe.Floeder
I am trying to figure out a way to get a list of files that have changed in a particular code line (branch or project) since a date or a revision. Svnlook changed does not appear to accept a range of revisions. gold:/opt/subversion-1.7.1/bin> svnlook changed -r11034:11035 /dsi/subvers

Re: svnlook changed - howto see all deleted files in pre-/post-commit hooks

2011-08-12 Thread Ryan Schmidt
variable for the duration of the script: #!/bin/bash REPOS=$1 TXN=$2 SVNLOOK=/usr/bin/svnlook SED=/usr/bin/sed HEAD_REV=$($SVNLOOK youngest $REPOS) PATHS_IN_REPOS=$($SVNLOOK changed $REPOS -t $TXN | $SED -n -E 's/^D...(.*)$/\1/p') for PATH_IN_REPOS in $PATHS_IN_REPOS; do

Re: svnlook changed - howto see all deleted files in pre-/post-commit hooks

2011-08-12 Thread Jan Ciesko (GMAIL)
a way to see which particular files have been deleted when a directory deletion has been commited. Example: I add to a repository BAR/Apps the folder Jacobi. With "svnlook changed "$REPOS"" in the post-commit hook I get the output: A BAR/Apps/Jacobi/ A BAR/Apps/Jacobi/LI

Re: svnlook changed - howto see all deleted files in pre-/post-commit hooks

2011-08-04 Thread Ryan Schmidt
On Aug 3, 2011, at 08:14, Jan Ciesko (GMAIL) wrote: > I'd like to ask if there is a way to see which particular files have been > deleted when a directory deletion has been commited. > > Example: > > I add to a repository BAR/Apps the folder Jacobi. With "svnlook

svnlook changed - howto see all deleted files in pre-/post-commit hooks

2011-08-03 Thread Jan Ciesko (GMAIL)
Dear SVN-experts, I'd like to ask if there is a way to see which particular files have been deleted when a directory deletion has been commited. Example: I add to a repository BAR/Apps the folder Jacobi. With "svnlook changed "$REPOS"" in the post-commit hook I get

svnlook changed - howto see all deleted files in pre-/post-commit hooks

2011-08-03 Thread Jan Ciesko (GMAIL)
Dear SVN-experts, I'd like to ask if there is a way to see which particular files have been deleted when a directory deletion has been commited. Example: I add to a repository BAR/Apps the folder Jacobi. With "svnlook changed "$REPOS"" in the post-commit hook I get