Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id CFF52200C4C for ; Tue, 21 Mar 2017 06:31:44 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id CE7A8160B8F; Tue, 21 Mar 2017 05:31:44 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 20315160B76 for ; Tue, 21 Mar 2017 06:31:43 +0100 (CET) Received: (qmail 89170 invoked by uid 500); 21 Mar 2017 05:31:43 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 89160 invoked by uid 99); 21 Mar 2017 05:31:42 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Mar 2017 05:31:42 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 500FC18E870 for ; Tue, 21 Mar 2017 05:31:42 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.719 X-Spam-Level: X-Spam-Status: No, score=-0.719 tagged_above=-999 required=6.31 tests=[RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, UNPARSEABLE_RELAY=0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id dyBqkWmSaen7 for ; Tue, 21 Mar 2017 05:31:38 +0000 (UTC) Received: from einhorn.in-berlin.de (einhorn.in-berlin.de [192.109.42.8]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTPS id 2D6155F64B for ; Tue, 21 Mar 2017 05:31:38 +0000 (UTC) X-Envelope-From: stsp@elego.de Received: from byrne.stsp.name (byrne.stsp.name [217.197.84.41]) by einhorn.in-berlin.de (8.14.4/8.14.4/Debian-8+deb8u1) with ESMTP id v2L5VNFf000468 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 21 Mar 2017 06:31:30 +0100 Received: from localhost (byrne.stsp.name [local]) by byrne.stsp.name (OpenSMTPD) with ESMTPA id 3862f1be; Tue, 21 Mar 2017 14:31:14 +0900 (JST) Date: Tue, 21 Mar 2017 14:31:14 +0900 From: Stefan Sperling To: Daniel Becroft Cc: users@subversion.apache.org Subject: Re: Relative URLs on command line Message-ID: <20170321053109.GB75980@byrne.stsp.name> Mail-Followup-To: Daniel Becroft , users@subversion.apache.org References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.8.0 (2017-02-23) archived-at: Tue, 21 Mar 2017 05:31:45 -0000 On Tue, Mar 21, 2017 at 12:25:25AM +0000, Daniel Becroft wrote: > > svn switch ^/trunk > svn: E125002: '/trunk' does not appear to be a URL > > > svn merge -c 10000 ^/trunk . > svn: E155007: 'C:\trunk' is not a working copy > > Everything works fine when using the full URLs, but I expected the relative > paths to work. > Environment: Windows 10 64-bit, version 1.9.5-SlikSvn (SlikSvn/1.9.5) > > Is this a *nix-only feature? In Windows cmd.exe ^ is a special character and must be escaped with itself. So try again with: svn switch ^^/trunk