您可以使用Subversion进行部分结帐吗?


Answers:


78

Subversion 1.5引入了稀疏签出,这可能对您有用。从文档中

... 稀疏目录(或浅层检出)...使您可以轻松地检出工作副本(或工作副本的一部分),而不是完全递归,而可以自由地将以前忽略的文件和子目录引入到目录中。晚点。


259

确实,由于我在这里的帖子的评论,看起来稀疏目录似乎是可行的方法。我相信以下应该这样做:

svn checkout --depth empty http://svnserver/trunk/proj
svn update --set-depth infinity proj/foo
svn update --set-depth infinity proj/bar
svn update --set-depth infinity proj/baz

另外,也可以--depth immediatesempty检入trunk/proj不带文件和目录内容的文件和目录。这样,您可以查看存储库中存在哪些目录。


如@zigdon的答案中所述,您还可以进行非递归检出。这是实现类似效果的较旧且较不灵活的方法:

svn checkout --non-recursive http://svnserver/trunk/proj
svn update trunk/foo
svn update trunk/bar
svn update trunk/baz

4
如果然后在主干目录上发布svn更新,它将拉下所有其他文件夹,还是只是更新已检索到的文件夹?
罗伯·沃克

2
我得到Skipped 'prom/foo'svn update --set-depth infinity proj/foo:(
萨姆

2
哦,您必须先更新父级(proj / foo),然后才能进行更深层的更新(proj / foo / boo)。
2013年

4
这是一个很好的答案,实际上,应该正确标记一个答案。谢谢!
Jimbo 2014年

1
您可能需要使用带有的中间步骤,svn update --set-depth immediates proj以便使proj / foo用于更新。
克雷格2014年

6

或对/ trunk进行非递归检出,然后仅对所需的3个目录进行手动更新。


6

我编写了一个脚本来自动执行复杂的稀疏签出。

#!/usr/bin/env python

'''
This script makes a sparse checkout of an SVN tree in the current working directory.

Given a list of paths in an SVN repository, it will:
1. Checkout the common root directory
2. Update with depth=empty for intermediate directories
3. Update with depth=infinity for the leaf directories
'''

import os
import getpass
import pysvn

__author__ = "Karl Ostmo"
__date__ = "July 13, 2011"

# =============================================================================

# XXX The os.path.commonprefix() function does not behave as expected!
# See here: http://mail.python.org/pipermail/python-dev/2002-December/030947.html
# and here: http://nedbatchelder.com/blog/201003/whats_the_point_of_ospathcommonprefix.html
# and here (what ever happened?): http://bugs.python.org/issue400788
from itertools import takewhile
def allnamesequal(name):
    return all(n==name[0] for n in name[1:])

def commonprefix(paths, sep='/'):
    bydirectorylevels = zip(*[p.split(sep) for p in paths])
    return sep.join(x[0] for x in takewhile(allnamesequal, bydirectorylevels))

# =============================================================================
def getSvnClient(options):

    password = options.svn_password
    if not password:
        password = getpass.getpass('Enter SVN password for user "%s": ' % options.svn_username)

    client = pysvn.Client()
    client.callback_get_login = lambda realm, username, may_save: (True, options.svn_username, password, True)
    return client

# =============================================================================
def sparse_update_with_feedback(client, new_update_path):
    revision_list = client.update(new_update_path, depth=pysvn.depth.empty)

# =============================================================================
def sparse_checkout(options, client, repo_url, sparse_path, local_checkout_root):

    path_segments = sparse_path.split(os.sep)
    path_segments.reverse()

    # Update the middle path segments
    new_update_path = local_checkout_root
    while len(path_segments) > 1:
        path_segment = path_segments.pop()
        new_update_path = os.path.join(new_update_path, path_segment)
        sparse_update_with_feedback(client, new_update_path)
        if options.verbose:
            print "Added internal node:", path_segment

    # Update the leaf path segment, fully-recursive
    leaf_segment = path_segments.pop()
    new_update_path = os.path.join(new_update_path, leaf_segment)

    if options.verbose:
        print "Will now update with 'recursive':", new_update_path
    update_revision_list = client.update(new_update_path)

    if options.verbose:
        for revision in update_revision_list:
            print "- Finished updating %s to revision: %d" % (new_update_path, revision.number)

# =============================================================================
def group_sparse_checkout(options, client, repo_url, sparse_path_list, local_checkout_root):

    if not sparse_path_list:
        print "Nothing to do!"
        return

    checkout_path = None
    if len(sparse_path_list) > 1:
        checkout_path = commonprefix(sparse_path_list)
    else:
        checkout_path = sparse_path_list[0].split(os.sep)[0]



    root_checkout_url = os.path.join(repo_url, checkout_path).replace("\\", "/")
    revision = client.checkout(root_checkout_url, local_checkout_root, depth=pysvn.depth.empty)

    checkout_path_segments = checkout_path.split(os.sep)
    for sparse_path in sparse_path_list:

        # Remove the leading path segments
        path_segments = sparse_path.split(os.sep)
        start_segment_index = 0
        for i, segment in enumerate(checkout_path_segments):
            if segment == path_segments[i]:
                start_segment_index += 1
            else:
                break

        pruned_path = os.sep.join(path_segments[start_segment_index:])
        sparse_checkout(options, client, repo_url, pruned_path, local_checkout_root)

# =============================================================================
if __name__ == "__main__":

    from optparse import OptionParser
    usage = """%prog  [path2] [more paths...]"""

    default_repo_url = "http://svn.example.com/MyRepository"
    default_checkout_path = "sparse_trunk"

    parser = OptionParser(usage)
    parser.add_option("-r", "--repo_url", type="str", default=default_repo_url, dest="repo_url", help='Repository URL (default: "%s")' % default_repo_url)
    parser.add_option("-l", "--local_path", type="str", default=default_checkout_path, dest="local_path", help='Local checkout path (default: "%s")' % default_checkout_path)

    default_username = getpass.getuser()
    parser.add_option("-u", "--username", type="str", default=default_username, dest="svn_username", help='SVN login username (default: "%s")' % default_username)
    parser.add_option("-p", "--password", type="str", dest="svn_password", help="SVN login password")

    parser.add_option("-v", "--verbose", action="store_true", default=False, dest="verbose", help="Verbose output")
    (options, args) = parser.parse_args()

    client = getSvnClient(options)
    group_sparse_checkout(
        options,
        client,
        options.repo_url,
        map(os.path.relpath, args),
        options.local_path)

0

如果您已经拥有完整的本地副本,则可以使用--set-depthcommand 删除不需要的子文件夹。

svn update --set-depth=exclude www

请参阅:http : //blogs.collab.net/subversion/sparse-directories-now-with-exclusion

set-depth命令支持多路径。

更新根本地副本不会更改修改后的文件夹的深度。

要将文件夹恢复为可退回签出,可以--set-depth再次使用infinity参数。

svn update --set-depth=infinity www

-1

有点。正如鲍比所说:

svn co file:///.../trunk/foo file:///.../trunk/bar file:///.../trunk/hum

将获得文件夹,但从Subversion角度来看,您将获得单独的文件夹。您将必须在每个子文件夹上进行单独的提交和更新。

我不相信您可以签出局部树,然后将局部树作为单个实体使用。


-10

并非以任何特别有用的方式,不是。您可以检出子树(如Bobby Jack的建议),但是您将失去自动更新/提交子树的能力。为此,需要将它们放置在其公共父目录下,并且一旦您签出公共父目录,便会下载该父目录下的所有内容。非递归不是一个好的选择,因为您希望更新和提交是递归的。


16
-1表示完全错误的答案。现实生活中有很多用例,您只需要处理大型项目中的一小部分组件,而又不想查看整个项目。
彼得

当然,您可以彼此独立地使用这些子树,但是在这种情况下,我认为DrPizza表示非原子提交/更新。在一定条件下可能是一个问题。
安德里(Andry)
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.