SVN update: 'skipped' message


在eclipse中用svn插件同步google code老是服務器連接time out!就只有通過檢出項目再更新啦,結果遇到個SVN update: 'skipped' message問題,還是stackoverflow強大啊,一找就解決問題啦!

I guess you are getting this type of error.

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

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.

Correct way is this.

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

Note: But if you messup with above order, svn up will not work for example.

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

you will get Skipped '.'

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM