Results 1 to 2 of 2

Thread: svn update svn+ssh:// problem: 'Skipped'

  1. #1

    svn update svn+ssh:// problem: 'Skipped'

    Hi,

    When working on machine A where my working copy is, if I enter:

    /my/working/copy/svn update
    At revision 31.

    So this works

    When trying this from another machine B, it doesn't work:

    svn update svn+ssh://ipMachineA/my/working/copy/ -r 31
    Skipped 'svn+ssh://ipMachineA/my/working/copy/'

    All access rights should be correct for the ssh tunneling because I can checkout a wc, log, etc.. from machine B.

    Why does only the 'svn update' pose problems?

    note that on machine A, this command doesn't work either:

    svn update file:///my/working/copy/
    Skipped file 'file:///my/working/copy/'

    Anyone any idea?

    Thanks alot.

  2. #2

    Re: svn update svn+ssh:// problem: 'Skipped'

    Hi Teran,

    Quote Originally Posted by Teran
    Hi,
    [..]
    /my/working/copy/svn update
    At revision 31.
    So this works
    [..]
    svn update svn+ssh://ipMachineA/my/working/copy/ -r 31
    Skipped 'svn+ssh://ipMachineA/my/working/copy/'
    [..]
    svn update file:///my/working/copy/
    Skipped file 'file:///my/working/copy/'

    Anyone any idea?

    Thanks alot.
    For svn update you need only a local path, not a repository location, as svn 'knows' the location of your repository already, because it is written in this nice .svn-folders. So you should try:
    Code:
    svn update /my/folder/to/wc/
    or if you are inside your workingcopy, just type:
    Code:
    svn up
    Hope that helps,
    Peter

Similar Threads

  1. Receiving Skipped error while using svn update command
    By shekarritwik in forum General Setup and Troubleshooting
    Replies: 11
    Last Post: 06-02-2010, 05:02 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •