升级到 Big Sur 后,git clone(使用 ROOT_URLCONF = 'MedEd.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR,'templates'),os.path.join(BASE_DIR,'srdh/templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'MedEd.wsgi.application'
FILE_UPLOAD_HANDLERS = (
"progressbarupload.uploadhandler.ProgressBarUploadHandler",
"django.core.files.uploadhandler.MemoryFileUploadHandler",
"django.core.files.uploadhandler.TemporaryFileUploadHandler",
)
DATA_UPLOAD_MAX_MEMORY_SIZE = 100*1024*1024
FILE_UPLOAD_MAX_MEMORY_SIZE = 100*1024*1024
2.30.2 版)不再有效。
当我输入命令 git
时,它输出:
克隆到'git'...
致命:--stdin 需要一个 git 存储库。
致命:索引包失败。
添加详细标志没有多大帮助
<块引用>$ git clone ... -v
克隆到 'git'...
POST git-upload-pack(164 字节)
POST git-upload-pack(gzip 40602 到 20426 字节)
致命:--stdin 需要一个 git 存储库
致命:索引包失败
但是,其他标准的 git 命令,如 push、diff、add、commit、status 等,仍然可以正常工作。
我在网上找到的唯一与 git on Windows 相关的内容,但我认为这不是同一个问题。请帮忙!
在升级到 Big Sur 之前,git clone 运行良好。我想知道在升级过程中是否更新/更改/删除了依赖项。