On Tue, Nov 22, 2016 at 10:13 PM, Bert Huijben wrote:
> Or set
> [miscellany]
> global-ignores = *
>
> In ~/.subversion/config
That does the trick, thanks a lot!
--
Olaf
> -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
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?
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
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
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':
[[[
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.
--
Olaf