SVN 更新:“跳过"消息 [英] SVN update: 'skipped' message

查看:35
本文介绍了SVN 更新:“跳过"消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用更新

svn update --username myusername https://my.svn.address

但是,我只是收到一条跳过"的消息?

However, I'm just getting a 'skipped' message?

推荐答案

我猜你会遇到这种类型的错误.

I guess you are getting this type of error.

[user@user myprojectdir]# svn up
Skipped '.'

从你的项目目录做 svn st

do svn st from your project dir

[user@user myprojectdir]# svn st
svn: warning: '.' is not a working copy 

这意味着您不在您的工作目录中.您可能在结帐时出错了.

it means you are not in your working dir. You might have done a wrong checkout.

正确的做法是这样.

[user@user ~]# svn co http://xxx.xxx.x.xxx/projectPRJ/trunk/ myprojectdir
[user@user ~]# cd myprojectdir
[user@user ~]# svn up

注意:但是如果你搞乱了上面的顺序,例如 svn up 将不起作用.

[user@user ~]# cd myprojectdir
[user@user myprojectdir]# svn co http://xxx.xxx.x.xxx/projectPRJ/trunk/ 
[user@user myprojectdir]# svn up

你会得到 Skipped '.'

这篇关于SVN 更新:“跳过"消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆