I'm trying to check out a project from a school server, but it attempts to use my computer login name instead of my server login name, so it fails.
my commands:
svn checkout svn+ssh://[server name and stuff]/[school login name]
and it says:
[computer login]@[server name]'s password:
which doesn't exist.
I attempted to use the --username
parameter:
svn checkout --username [school login] svn+ssh://[server name and stuff]/[school login name]
but it requests the same password for the same nonexistent user. What am I doing wrong with my checkout command?