svn: warning: Error handling external definitions for -
svn: warning: Error handling external definitions for -
i'm having extrange error defining external repo svn. repository create externals definition enterprise repository needs authentications (svn+ssh). works on machine, have same username both in machine , in svn.
when seek reproduce checkout machine different user name, checkout works fine until arrives external repo. @ moment, instead sync external svn username, seek sync external machine's username.
i set external in way:
svn propset svn:externals 'dd1 svn+ssh://subversion.example.int/var/subversion/dd1/trunk' . svn commit
i cannot define external , username because has own user/password
any ideas? thanks.
solved.
the problem combination between svn + ssh. ssh gives user name svn. can forcefulness username writing svn+ssh://username@svn.server.com/trunk external fetch against default username (because different svn authentication process).
the solution write config file (~/.ssh/config) , write inside:
host subversion.example.int user svn_user
(more info at: http://www.eall.com.br/blog/?p=105)
with create alias between machine's user , server's user. until external inquire svn_user instead machine_user (as long don't alter external form subversion.example.int)
svn
Comments
Post a Comment