![]() |
|
SVN Checkout - Printable Version +- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org) +-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support) +--- Forum: Support (https://forums.dolphin-emu.org/Forum-support) +--- Thread: SVN Checkout (/Thread-svn-checkout) |
RE: SVN Checkout - gcp111 - 07-06-2009 (07-06-2009, 09:16 AM)Evanjs Wrote: No, because my firewall is set to Allow all incoming connections SVN isn't incoming. It connects to Google Code's SVN server and downloads the files via TCP. Thus, it's outgoing. I'm not sure why it doesn't work for you, it works fine for everyone else. I haven't played with Mac much so I can't really help you. RE: SVN Checkout - Evanjs - 07-06-2009 (07-06-2009, 09:19 AM)gcp111 Wrote:(07-06-2009, 09:16 AM)Evanjs Wrote: No, because my firewall is set to Allow all incoming connections okay but would you have any idea about how to set the firewall for that?
RE: SVN Checkout - gcp111 - 07-06-2009 Hmm, I'm not sure the default Leopard firewall blocks things like that. The only last thing I can think of is (from http://stackoverflow.com/questions/783186/what-does-the-subversion-error-could-not-read-status-line-mean) updating SVN. Like from macports or something. RE: SVN Checkout - Evanjs - 07-06-2009 (07-06-2009, 09:28 AM)gcp111 Wrote: Hmm, I'm not sure the default Leopard firewall blocks things like that. And now im having problems updating SVN, i type SVN update in terminal and it says: Skipped '.' And when i type in SVN info it says: svn: '.' is not a working copy And when i type in SVN status it says: svn: warning: '.' is not a working copy
RE: SVN Checkout - gcp111 - 07-06-2009 lol, I mean update the svn binary itself. First of all, check which SVN version you have: $ svn -v If it's 1.4 or something, you should probably upgrade... AFAIK one of the only ways to do this is by installing macports (grab the universal binary) then running $ sudo port selfupdate $ sudo port install subversion or something similar I'm still not sure why older versions wouldn't work. You can upgrade if you want, but I'm not 100% sure it'll work. RE: SVN Checkout - Evanjs - 07-06-2009 Thanks, its updating both macports and the binaries... i think... ill see if it works when its done updating It still says svn is not a working copy, and when i type $svn -v it says: Macintosh-3:~ Evan$ svn -v Subcommand argument required Type 'svn help' for usage. ??? RE: SVN Checkout - gcp111 - 07-06-2009 (07-06-2009, 10:36 AM)Evanjs Wrote: Macintosh-3:~ Evan$ svn -v try $ svn --version or $ svn version RE: SVN Checkout - Evanjs - 07-06-2009 (07-06-2009, 11:47 AM)gcp111 Wrote:(07-06-2009, 10:36 AM)Evanjs Wrote: Macintosh-3:~ Evan$ svn -v Macintosh-3:~ Evan$ svn --version svn, version 1.6.3 (r38063) compiled Jul 5 2009, 20:57:51 Copyright © 2000-2009 CollabNet. Subversion is open source software, see http://subversion.tigris.org/ This product includes software developed by CollabNet (http://www.Collab.Net/). The following repository access (RA) modules are available: * ra_neon : Module for accessing a repository via WebDAV protocol using Neon. - handles 'http' scheme - handles 'https' scheme * ra_svn : Module for accessing a repository using the svn network protocol. - with Cyrus SASL authentication - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme * ra_serf : Module for accessing a repository via WebDAV protocol using serf. - handles 'http' scheme - handles 'https' scheme Macintosh-3:~ Evan$ Version 1.6.3 thats good right? RE: SVN Checkout - gcp111 - 07-06-2009 (07-06-2009, 11:53 AM)Evanjs Wrote: Version 1.6.3 Yeah. Try to check out, does it work now? RE: SVN Checkout - Evanjs - 07-06-2009 (07-06-2009, 12:00 PM)gcp111 Wrote:(07-06-2009, 11:53 AM)Evanjs Wrote: Version 1.6.3 No, now it says this: Last login: Sun Jul 5 21:03:02 on ttys000 Macintosh-3:~ Evan$ export PATH=/opt/local/bin:$PATH Macintosh-3:~ Evan$ svn checkout http://dolphin-emu.googlecode.com/svn/trunk/ dolphin-emu-read-only svn: REPORT of '/svn/!svn/vcc/default': Could not read status line: Connection reset by peer (http://dolphin-emu.googlecode.com) Macintosh-3:~ Evan$ (07-06-2009, 12:04 PM)Evanjs Wrote:(07-06-2009, 12:00 PM)gcp111 Wrote:(07-06-2009, 11:53 AM)Evanjs Wrote: Version 1.6.3 Wait, now its saying this again: Macintosh-3:~ Evan$ svn checkout http://dolphin-emu.googlecode.com/svn/trunk/ dolphin-emu-read-only svn: REPORT of '/svn/!svn/vcc/default': Could not read status line: connection was closed by server (http://dolphin-emu.googlecode.com) Macintosh-3:~ Evan$ ug.... |