Как добавить пустую папку в проект Mercurial?

в моем проекте я использую Mercurial и папку, в которую пользователь может загрузить файл.
Но так как пользователь будет загружать файлы, папка пуста.

Я не знаю, как я могу добавить эту папку в свой проект, не помещая файл внутрь.

вы знаете, как я могу это сделать ?

14
задан Kenster
07.04.2023 9:17 Количество просмотров материала 2582
Распечатать страницу

3 ответа

Mercurial отслеживает только файлы,не директории.

одно решение-добавить a .пустой файл в репозиторий:

$ touch uploads/.empty
$ hg add uploads/.empty
44
отвечен Natim 2023-04-08 17:05

Я создал скрипт на 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
4
отвечен mendezcode 2023-04-08 19:22

вы просто делаете следующее:

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.png будет выглядеть как новый файл без версии в hg status если вы не игнорируете эту закономерность.

1
отвечен Paul Redmond 2023-04-08 21:39

Постоянная ссылка на данную страницу: [ Скопировать ссылку | Сгенерировать QR-код ]

Ваш ответ

Опубликуйте как Гость или авторизуйтесь

Имя
Вверх