尝试将repo克隆到Windows 7中,其中包含“aux”目录

时间:2015-08-30 11:51:11

标签: git windows-7

在尝试克隆git repo时 - jpeginfo专门 - 发生错误,

class Live(object):
    _the_oldest = 0

    def __init__(self,age,name):
        self.age=age
        self.name=name
        if Live._the_oldest < self.age:
            Live._the_oldest = self.age

    @staticmethod
    def the_oldest():
        return Live._the_oldest

    @staticmethod
    def Print(): 
        print(Live._the_oldest)

显然,'aux'目录名是Windows系统上的保留名称。我不知道该怎么办?

尝试在cygwin和mingw下克隆它会导致相同的结果。

有没有人有任何想法最简单的方法,首先 - 克隆上述jpeginfo存储库,第二 - 在Windows下构建它?

1 个答案:

答案 0 :(得分:0)

除非项目更改该文件夹的名称(as others did),否则一个解决方案是install dockerclone the repo in a container

考虑jpeginfo仅在Unix平台(Linux,OS X(Snow Leopard),Solaris,IRIX和HP-UX)上进行测试,该容器也将是正确的构建环境。