From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,9a365c8b397c03a0 X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!out04a.usenetserver.com!news.usenetserver.com!in04.usenetserver.com!news.usenetserver.com!uns-out.usenetserver.com!news.usenetserver.com!pc03.usenetserver.com!news.flashnewsgroups.com-b7.4zTQh5tI3A!not-for-mail Newsgroups: comp.lang.ada Subject: Re: using svn in GPS on Windows == wonky References: From: Stephen Leake Date: Sat, 08 Dec 2007 05:17:34 -0500 Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/22.1 (windows-nt) Cancel-Lock: sha1:Mb/7QLzvc4Xt3IMzpY55IHmK7IA= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@flashnewsgroups.com Organization: FlashNewsgroups.com X-Trace: 20059475a6f37e05e48ed07449 Xref: g2news1.google.com comp.lang.ada:18782 Date: 2007-12-08T05:17:34-05:00 List-Id: John Stoneham writes: > Sorry if this isn't the proper place to ask this, but maybe somebody > can help. Previously, I've used svn command-line tools for version > control, and now I've decided to try out the VCS interface built into > GPS. But I can't seem to get it to work. > > I'm using GNAT GPL 2007-2 for Windows (GPS 4.1.3), and have my project > set to use Subversion for VCS. Any VCS operation results in an error, > and the Messages window shows that the path which is passed to the svn > command begins with "/cygdrive/" instead of the actual project path. I'm guessing that you are using the Cygwin implementation of Subversion, and you followed the misleading standard Cygwin installation defaults. You should uninstall Cygwin, and reinstall at C:/. The default is C:/cygwin, and the installer will complain if you change it to C:/; ignore the complaint. When you do this, Cygwin mounts "/" as "c:/". Then all Windows paths (c:/foo/bar) are the same as all Cygwin paths (/foo/bar), for the C: drive. If you have stuff on other drives, Cygwin will use /cygdrive/d/... etc. Then you have to mess with cygpath, which gets very messy very quickly. > Is this a "known issue" with GPS 4.1.3 on Windows, or is there a > configuration option I'm missing somewhere? This is a Cygwin issue, not a GPS issue. Although I suppose GPS could be taught how to deal with Cygwin. I doubt that will happen. Another alternative is to find a native Windows implementation of Subversion. -- -- Stephe