mirror of https://github.com/jkjoy/sunpeiwen.git
15 lines
460 B
Markdown
15 lines
460 B
Markdown
---
|
|
title: Git在windows下区分大小写
|
|
tags:
|
|
- git
|
|
categories:
|
|
- 分享
|
|
abbrlink: 61166
|
|
excerpt: 'ai: 这篇文章介绍了如何在.deploy_git目录下执行特定操作来解决GitHub Pages中因CNAME文件被转换为小写而导致域名绑定失效的问题。'
|
|
date: 2023-03-21 19:03:13
|
|
---
|
|
在`.deploy_git`目录下运行
|
|
```bash
|
|
git config core.ignorecase false
|
|
```
|
|
可解决github pages 下CNAME被改为小写导致绑定域名失效的情况 |