Mercurialプロジェクトに空のフォルダーを追加する方法は?


44

私のプロジェクトでは、ユーザーがファイルをアップロードできるときにMercurialとフォルダーを使用しています。ただし、ユーザーはファイルをアップロードするため、フォルダーは空です。

ファイルを中に入れずにこのフォルダーをプロジェクトに追加する方法がわかりません。

私にできることを知っていますか?

回答:


46

Mercurialは、ディレクトリはなくファイルのみを追跡します

1つの解決策は、.emptyファイルをリポジトリに追加することです。

$ touch uploads/.empty
$ hg add uploads/.empty

1
はい、それは確かに正しい解決策です。Mercurialはディレクトリではなくファイルのみを追跡します。別の解決策は、ソフトウェアを展開するときに空のディレクトリを作成することです。
マーティンガイスラー

2
私はそれを命名すること.hgemptyは、それが何のためにあるのかについてより良い手がかりを与えるかもしれないと思ってい
ます

8
はい、または.hgkeep
Natim

2
同様に冗長に行くかもしれません:.hgkeepifempty :)
ダニエル

4

これらのファイルを作成/削除するプロセスを自動化するpythonスクリプトを作成しました。

スクリプトのソースは次のとおりです。http//pastebin.com/inbYmMut

#!/usr/bin/python

# Copyright (c) 2011 Ernesto Mendez (der-design.com)
# Dual licensed under the MIT and GPL licenses:
# http://www.opensource.org/licenses/mit-license.php
# http://www.gnu.org/licenses/gpl.html

# Version 1.0.0
# - Initial Release

from __future__ import generators
import sys
from optparse import OptionParser
import os

def main():
    # Process arguments

    if len(args) > 1:
        parser.error('Too many arguments')
        sys.exit()

    elif len(args) == 0:
        parser.error('Missing filename')
        sys.exit()

    if not os.path.exists(options.directory):
        parser.error("%s: No such directory" % options.directory)
        sys.exit()

    filename = args[0]

    # Create generator

    filetree = dirwalk(os.path.abspath(options.directory))

    # Walk directory tree, create files

    if options.remove == True:

        removed = ['Removing the following files: \n']
        cmd = "rm"

        for file in filetree:
            if (os.path.basename(file) == filename):
                removed.append(file)
                cmd += " %s" % fixpath(file)

        if cmd != "rm":
            for f in removed: print f
            os.system(cmd)
        else:
            print "No files named '%s' found" % filename
            sys.exit()

    # Walk directory tree, delete files

    else:

        created = ["Creating the following files:\n"]
        cmd = "touch"

        for file in filetree:
            if (os.path.isdir(file)):
                created.append("%s%s" % (file, filename))
                cmd += " " + fixpath("%s%s" % (file, filename))

        if cmd != "touch":
            for f in created: print f
            os.system(cmd)
        else:
            print "No empty directories found"
            sys.exit()


def dirwalk(dir, giveDirs=1):
    # http://code.activestate.com/recipes/105873-walk-a-directory-tree-using-a-generator/
    for f in os.listdir(dir):
        fullpath = os.path.join(dir, f)
        if os.path.isdir(fullpath) and not os.path.islink(fullpath):
            if not len(os.listdir(fullpath)):
                yield fullpath + os.sep
            else:
                for x in dirwalk(fullpath):  # recurse into subdir
                    if os.path.isdir(x):
                        if giveDirs:
                            yield x
                    else:
                        yield x
        else:
            yield fullpath


def wrap(text, width):
    return reduce(lambda line, word, width=width: '%s%s%s' % (line, ' \n'[(len(line)-line.rfind('\n')-1 + len(word.split('\n', 1)[0] ) >= width)], word), text.split(' ') )


def fixpath(p):
    return shellquote(os.path.normpath(p))


def shellquote(s):
    return "'" + s.replace("'", "'\\''") + "'"


def init_options():
    global parser, options, args
    parser = OptionParser(usage="usage: %prog [options] filename", description="Add or Remove placeholder files for SCM (Source Control Management) tools that do not support empty directories.")
    parser.add_option("-p", "--path", dest="directory", help="search within PATH", metavar="PATH")
    parser.add_option("-r", "--remove", dest="remove", action="store_true", help="remove FILE from PATH, if it's the only file on PATH")

    (options, args) = parser.parse_args()

if __name__ == '__main__':
    print
    init_options()
    main()
    print

リンクは無効です。
ナティム

真の、更新されたリンク...
mendezcode

2
bitbucket(または)githubでホストし、古い
pastebin

-1、スクリプトはntiパターンと悪い習慣を例示します。
ニクラティオ

1

次のことを行うだけです。

mkdir images && touch images/.hgkeep
hg add images/.hgkeep
hg commit -m"Add the images folder as an empty folder"

これを行うときの考慮事項として、次のことに注意してください。

あなたの場合、開発環境で画像をアップロードしている可能性があり.hgignoreますので、コミットするつもりのない画像を誤ってコミットしないように、ファイルに以下を追加することもお勧めします。

^(images)\/(?!\.hgkeep)

ルールは、「空の」フォルダーをバージョン管理に追加する必要がimages/**ある.hgkeepファイル以外のすべてを無視します。このルールが重要な理由は、そのフォルダー内のすべてのファイル(つまりimages/test-image.pnghg statusそのパターンを無視しないと、バージョン管理されていない新しいファイルのように見えるため)です。


2
質問を注意深く読んでください。あなたの答えはないではない「どのようにフォルダを無視する」ではなく「どのように空のフォルダを追加するために」頼ま元の質問に答える
DavidPostill

1
あなたが正しい。実際に質問に答えるように回答を更新しました。私はアドバイスを変更しましたが、99%の確率で望ましい動作を知ることが重要だからです。
ポールレドモンド

@PaulRedmond imagesパスにディレクトリが深い場合はどうなりますか?のようなもの./lectures/chapter_10/images?正しい構文は何ですか?
アラゴン

@aaragonは確かにMercurialを使用してからしばらく経ちましたが、意図するパターンに一致するように正規表現を調整する必要があります。無視されると予想されるパスに気付いたら、必要に応じて正規表現を調整します。
ポールレドモンド
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.