开发者

What these SVN command lines do in detail?

开发者 https://www.devze.com 2023-03-13 03:49 出处:网络
svn co svn://svn.fazend.com/abc/branche开发者_如何学Gos/pqr-staging pqr cd pqr svn merge ^/trunk/xyz.com

svn co svn://svn.fazend.com/abc/branche开发者_如何学Gos/pqr-staging pqr

cd pqr

svn merge ^/trunk/xyz.com

do some changes in here and

svn ci -m " some comment about your change"


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

Merge the changes from a different working copy (^/trunk/xyz.com) into your working copy (pqr). The only reasonable explanation for the ^ I can find is "parent directory" on RISC OS.

do some changes in here and

Make additional changes in the working copy, usually needed to resolve any conflicts.

svn ci -m " some comment about your change"

Commit the merge result and your changes to the repository.


Try the nice documentation in the freely available SVN book:

http://svnbook.red-bean.com/index.en.html

0

精彩评论

暂无评论...
验证码 换一张
取 消