将代码放入 subversion 存储库

发布于 2024-11-02 15:06:43 字数 415 浏览 0 评论 0原文

我刚刚开始使用 subversion,因为我正在与一个不习惯使用 git 的合作伙伴一起工作。我注册了 unfuddle,并且有一个 svn url,但是当我尝试运行 svn import 命令时,我收到错误,

svn: Could not open the requested SVN filesystem

我也不确定为什么它要求我输入两个密码。我也尝试使用 --username 选项在 unfuddle 上传递我的用户名,但这并没有解决任何问题。

我运行的命令是 svn import /path/to/tree http://svn.url/on/unfuddle

如有任何帮助,我们将不胜感激。

I just started with subversion, as I'm working with a partner who is not comfortable using git. I signed up for unfuddle, and have a svn url, however when I try to run the svn import command, I get the error

svn: Could not open the requested SVN filesystem

I'm also unsure why it ask me for two passwords. I tried using the --username option as well to pass my username on unfuddle, but that didn't solve anything.

The command I ran was svn import /path/to/tree http://svn.url/on/unfuddle

Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千寻… 2024-11-09 15:06:43

我是这样做的:

首先,在 unfuddle 中创建存储库。
然后,浏览到存储库并单击“显示如何连接”。应该是这样的:

svn checkout https://company.unfuddle.com/svn/repo-name/ local_directory_name

然后,在您的本地计算机上:

cd /path/to
svn checkout https://company.unfuddle.com/svn/repo-name/ tree
cd /path/to/tree
svn ci -m "initial commit of code"

Here's how I do it:

First, create the repository in unfuddle.
Then, browse to the repo and click "show me how to connect". Should be something like:

svn checkout https://company.unfuddle.com/svn/repo-name/ local_directory_name

Then, on your local machine:

cd /path/to
svn checkout https://company.unfuddle.com/svn/repo-name/ tree
cd /path/to/tree
svn ci -m "initial commit of code"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文