English 中文(简体)
这些特别志愿人员指挥线的细节如何?
原标题:What these SVN command lines do in detail?

svn co svn://svn.fazend.com/abc/branches/pqr-staging pqr

svn joint ^/trunk/xyz.com

do some changes in here and

最佳回答

You really need to read the svnbook mentionied by schlenk.

svn co svn://svn.fazend.com/abc/branches/pqr-staging pqr

Check out from the mentioned repository and put the files in (a new) pqr directory. The new directory is your working copy.

cd pqr

Change to the pqr directory.

svn merge ^/trunk/xyz.com

将不同工作文本(^/trunk/xyz.com)的改动输入您的工作文本(pqr)。 本人所能找到的唯一合理解释是社会、文化、文化、文化、文化、文化、文化、文化、文化、文化、文化、文化、文化、文化、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、语言、

do some changes in here and

对工作副本作出额外改动,通常需要这样做才能解决任何冲突。

svn ci -m " some comment about your change"

将结果合并和您对存放处的改动。

问题回答

Try the nice documentation in the free available SVN book:





相关问题
Best practices for Subversion and Visual Studio projects

I ve recently started working on various C# projects in Visual Studio as part of a plan for a large scale system that will be used to replace our current system that s built from a cobbling-together ...

Changing username in SVN+SSH URI on the fly in working copy

I am using SVN+SSH to check out a working copy of repository from an SVN server on which all developers are members of a developer group and have full read/write permissions on the repository ...

ASP.NET MVC: How should it work with subversion?

So, I have an asp.net mvc app that is being worked on by multiple developers in differing capacities. This is our first time working on a mvc app and my first time working with .NET. Our app does not ...

How to search for file in subversion server?

Is there a way to search for a file in a subversion repository? Something similar to Unix find command, with which I can find the location of a file in a repository. I know there is svn list, but ...