Re: Email notification on commit

2011-10-04 Thread ankush chadha
http://search.cpan.org/dist/SVN-Notify/ This is good if you want colorful emails with diffs. Worth a shot! Ankush From: Olga Kramer To: users@subversion.apache.org Sent: Tuesday, October 4, 2011 6:50 PM Subject: Email notification on commit Hi, Can someon

Re: How to divide my files into two groups

2011-04-27 Thread ankush chadha
I think one should use code reviewing tools to handle this scenario. Using svn properties to mark a big chunk reviewed is fine but when it comes to more granular level, then it makes sense to shift to code reviewing tools as they are meant to take care of all those scenarios. Ankush _

Re: svnsync error : Error while replaying commit

2011-04-22 Thread ankush chadha
Can you check the nature of the revision that is causing the svnsync to fail? Make sure that there is enough disk space and you are able to connect to the main SVN repository. Make sure that there are no issues with the permissions (I will have to write a testcase to verify the same) Worst case

Re: svnsync error : Error while replaying commit

2011-04-14 Thread ankush chadha
ith sample scripts. Thanks Ankush From: Daniel Shahaf To: ankush chadha ; Thorsten Schöning ; users@subversion.apache.org Sent: Thu, April 14, 2011 10:21:12 AM Subject: Re: svnsync error : Error while replaying commit "It should work." Spec

Re: svnsync error : Error while replaying commit

2011-04-14 Thread ankush chadha
down this issue. Thanks Ankush From: Thorsten Schöning To: users@subversion.apache.org Sent: Wed, April 13, 2011 3:27:30 AM Subject: Re: svnsync error : Error while replaying commit Guten Tag ankush chadha, am Dienstag, 12. April 2011 um 18:46 schrieben Sie:

Re: svnsync error : Error while replaying commit

2011-04-12 Thread ankush chadha
irror those revisions. Ankush From: ankush chadha To: users@subversion.apache.org Sent: Tue, April 12, 2011 10:27:03 AM Subject: svnsync error : Error while replaying commit Hi All I am encountering this svnsync error while mirroring my repository. The t

svnsync error : Error while replaying commit

2011-04-12 Thread ankush chadha
Hi All I am encountering this svnsync error while mirroring my repository. The target svn binaries point to 1.6.6 version(windows). I also tried running the svnsync command using 1.6.16 libraries but still getting the same error. The source repository is hosted by svn server with 1.6.6 binarie

Re: Failed SVN Verify Logs

2011-03-15 Thread ankush chadha
but never faced this problem. Make sure that you are using same version of binaries throughout. You should also mirror your svn repository to reduce downtime and surprises. Ankush From: Jules Herr To: ankush chadha Cc: users@subversion.apache.org Sent

Re: Betr.: RE: Hook help

2011-02-22 Thread ankush chadha
> > > I am trying to write a hook to prevent deletion of elements through a > pre-commit hook. > > > >>If you're not using the bindings you'd want svnlook, probably svnlook > diff. > > >>But, do you really want such a hook? If a user has permission to add > stuff they should be allowed to also

Re: migrate svn 1.4 to 1.6

2011-02-18 Thread ankush chadha
> Also make sure to upgrade all the svn client applications to 1.6 after >upgrading > > your svn server and the repository to 1.6. There were issues with non > recursive > > checkouts using some svn client applications. >Which issues in particular? >Can you point to relevant mailing list th

Re: migrate svn 1.4 to 1.6

2011-02-18 Thread ankush chadha
> > I am planning a migrate/upgrade SVN server that work at > > windows 2003 server . > > > > My current version is 1.4 and I want to migrate to 1.6 > > > > 1) Should I restart the windows server at the end of the > > process ? Is it needed? > > As already mentioned, not the server but you will

Re: svn 1.7 improvements: Large repo? (w/ 40,000 files)

2011-02-14 Thread ankush chadha
Is there a reason to checkout 40k files again and again? Can it be substituted by an svn update (after first checkout)? If you are using svnkit library to do svn checkouts, then you may want to try there new version (with jna). There were performance issues in the old version of svnkit. I reme

Re: Need help in restoring the svn repository (server side)

2011-02-08 Thread ankush chadha
Yes, you are right. The fundamental problem was that a good reliable and scalable backup solution was missing. Incremental svn dump looks promising. Ankush From: David Chapman To: ankush chadha Cc: users@subversion.apache.org Sent: Fri, February 4, 2011 7

Re: Need help in restoring the svn repository (server side)

2011-02-04 Thread ankush chadha
D, I can see all the revisions :) Running a svn verifier on the entire repository to make sure that nothing else is corrupted. Ankush ________ From: ankush chadha To: users@subversion.apache.org Sent: Fri, February 4, 2011 1:47:34 PM Subject: Need help in restorin

Need help in restoring the svn repository (server side)

2011-02-04 Thread ankush chadha
Hi All I am trying to recover the repository from a corrupted hard drive. I have very huge source repository, about 136000 revisions. Luckily I have a 4 month old backup. I think I was able to recover the contents of db/revs and db/revprops folder as it contains 136000 + 1 files each. ( 1 file

Re: SVN 1.6.12 crash on merge.

2010-09-03 Thread ankush chadha
I also faced the same issue with slikSVN and it was throwing a dump but when I switched to colabnet binaries, it was working fine. Ankush

Re: svn redo after reverse merge

2010-09-02 Thread ankush chadha
Actually it works with --ignore-ancestry option i.e. svn merge -c 8 svn://repository/trunk --ignore-ancestry Ankush From: ankush chadha To: Ryan Schmidt Cc: "Cooke, Mark" ; users@subversion.apache.org Sent: Thu, September 2, 2010 2:47:17 PM S

Re: svn redo after reverse merge

2010-09-02 Thread ankush chadha
have some restrictions of creating a branch as of now. So as of now, if I have to perform redo operation it will be to create a patch first using svn diff and then apply this patch and then commit changes. Ankush From: Ryan Schmidt To: ankush chadha Cc: "Cooke

Re: svn redo after reverse merge

2010-09-02 Thread ankush chadha
From: "Cooke, Mark" To: ankush chadha ; users@subversion.apache.org Sent: Thu, September 2, 2010 1:50:26 AM Subject: RE: svn redo after reverse merge > -Original Message- > From: ankush chadha [mailto:ankushchadha2...@yahoo.com] >

svn redo after reverse merge

2010-09-01 Thread ankush chadha
Hi All I am trying to do following operation file.txt has 100 revisions and located directly under svn://myrepo.org/trunk 1. svn co svn://myrepo.org/trunk/ 2. Undoing few changes made to this file svn merge -c -100 svn://myrepo.org/trunk/ svn merge -c -99 svn://myrepo.org/trunk/