RE: How to hide unversioned files from svn status

2016-11-22 Thread Bert Huijben
> -Original Message- > From: Branko Čibej [mailto:br...@apache.org] > Sent: dinsdag 22 november 2016 18:26 > To: users@subversion.apache.org > Subject: Re: How to hide unversioned files from svn status > > On 22.11.2016 16:30, Olaf van der Spek wrote: > > On Tue, Nov 22, 2016 at 10:40 AM

Re: How to hide unversioned files from svn status

2016-11-22 Thread Branko Čibej
On 22.11.2016 16:30, Olaf van der Spek wrote: > On Tue, Nov 22, 2016 at 10:40 AM, Daniel Shahaf > wrote: >> Johan Corveleyn wrote on Tue, Nov 22, 2016 at 09:43:26 +0100: >>> If you want to add that option to every status command, maybe you can >>> use a shell alias or something similar for that?

Re: How to hide unversioned files from svn status

2016-11-22 Thread Olaf van der Spek
On Tue, Nov 22, 2016 at 10:40 AM, Daniel Shahaf wrote: > Johan Corveleyn wrote on Tue, Nov 22, 2016 at 09:43:26 +0100: >> If you want to add that option to every status command, maybe you can >> use a shell alias or something similar for that? > > For Bourne-like shells: > > svn() { > ca

Re: SVN issue

2016-11-22 Thread vellur pandian R K
On Tue, Nov 22, 2016 at 4:11 PM, Pavel Lyalyakin < pavel.lyalya...@visualsvn.com> wrote: > Hello, > > On Tue, Nov 22, 2016 at 1:32 PM, vellur pandian R K > wrote: > > Use "Reply All" command of your email client to keep the mailing list > in the loop, please. BTW, the mailing list prefers bottom

Re: SVN issue

2016-11-22 Thread Pavel Lyalyakin
Hello, On Tue, Nov 22, 2016 at 1:32 PM, vellur pandian R K wrote: Use "Reply All" command of your email client to keep the mailing list in the loop, please. BTW, the mailing list prefers bottom posting or inline replying instead of top-posing. > Hi Pavel, > >Thanks for the reply, Right now

Re: SVN issue

2016-11-22 Thread Daniel Shahaf
vellur pandian R K wrote on Tue, Nov 22, 2016 at 15:00:09 +0530: > * Verified revision 508451. > svnadmin: E160004: Mergeinfo-count discrepancy on 'a-1.0.r508452/9674': > expected > 1244741480414057964+0, counted 116 This looks like issue #4129: https://subversion.apache.org/docs/issue4129.t

Re: SVN issue

2016-11-22 Thread Pavel Lyalyakin
Hello, On Tue, Nov 22, 2016 at 12:30 PM, vellur pandian R K wrote: > > Hi > > We are using Visual SVN server in our company. It worked well What VisualSVN Server version do you use at the moment? Make sure that you use an up-to-date VisualSVN Server version. > But users unable to create parti

SVN issue

2016-11-22 Thread vellur pandian R K
Hi We are using Visual SVN server in our company. It worked well But users unable to create particular branch from trunk folder i have put svnadmin verify to check repository i found error as below * Verified revision 508448. * Verified revision 508449. * Verified revision 508450. * Verifie

Re: Adopting unversioned directory on svn up

2016-11-22 Thread Daniel Shahaf
Olaf van der Spek wrote on Tue, Nov 22, 2016 at 10:19:06 +0100: > On Tue, Nov 22, 2016 at 10:11 AM, Stefan Sperling wrote: > > Subversion does not version file permissions. You may end up with > > sensitive files being readable by users other than root (e.g. files > > such as SSH private host keys

Re: How to hide unversioned files from svn status

2016-11-22 Thread Daniel Shahaf
Johan Corveleyn wrote on Tue, Nov 22, 2016 at 09:43:26 +0100: > If you want to add that option to every status command, maybe you can > use a shell alias or something similar for that? For Bourne-like shells: svn() { case "$1" in st|stat|staus) command svn -q "$@";; *) c

unsubscribe

2016-11-22 Thread Ashish Kaushik

Re: Adopting unversioned directory on svn up

2016-11-22 Thread Olaf van der Spek
On Tue, Nov 22, 2016 at 10:11 AM, Stefan Sperling wrote: > This side-steps your actual question but are you sure you want to > version files in your /etc directory with Subversion? No ;) > Subversion does not version file permissions. You may end up with > sensitive files being readable by users

Re: Adopting unversioned directory on svn up

2016-11-22 Thread Stefan Sperling
On Tue, Nov 22, 2016 at 08:56:40AM +0100, Olaf van der Spek wrote: > Hi, > > How does one adopt / merge the update from the repo into local > unversioned directories? > Using R marks the directory for deletion. > > # svn up /etc > Updating '/etc': This side-steps your actual question but are you

Re: Adopting unversioned directory on svn up

2016-11-22 Thread Johan Corveleyn
On Tue, Nov 22, 2016 at 8:56 AM, Olaf van der Spek wrote: > Hi, > > How does one adopt / merge the update from the repo into local > unversioned directories? > Using R marks the directory for deletion. > > # svn up /etc > Updating '/etc': >C /etc/php5 >A /etc/php5/cli >A /etc/php5/cli/

Re: How to hide unversioned files from svn status

2016-11-22 Thread Johan Corveleyn
On Tue, Nov 22, 2016 at 8:58 AM, Olaf van der Spek wrote: > Hi, > > How does one hide ALL unversioned files from ALL svn status commands? > I don't want to add all files to svn-ignore, I'd just like this one > command to not show them. I think the -q option does that. From 'svn help status': [[[