Skip to content

Commit 13aab4e

Browse files
committed
Update file name to lowercase
1 parent 0eae583 commit 13aab4e

27 files changed

+4
-2
lines changed

public/css/markdown.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
code {
2-
background-color: rgba(24, 159, 114, 0.8);
2+
background-color: rgba(105, 167, 156, 0.8);
33
padding: 0.1rem 0.3rem;
44
border-radius: 0.25rem;
5-
color: rgb(255, 255, 255);
65
}
76

87
/* clear */
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/posts/Git_issues_collection.md renamed to src/posts/git_issues_collection.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,6 @@ summary: 收集一些关于开发中遇到的 Git 问题
3737
4. Git 提交验证,由于 Git 服务器对提交的作者一般都不会进行身份验证,所以如果使用了别人的身份信息提交代码进行“投毒”是很容易的,所以多数仓库会进行 `ssh``GPG` 的验证:
3838
* [`ssh` 签名验证](https://docs.github.com/zh/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key#telling-git-about-your-ssh-key)
3939
* [`GPG` 签名验证](https://docs.github.com/zh/authentication/managing-commit-signature-verification/generating-a-new-gpg-key),在 Mac 上使用 PGP 签名可能有问题,具体参考:<https://gist.github.com/Peredery/38d0538dd34381bbd9d13414269a1f27>
40+
41+
5. Git 在提交后,因文件名大小问题进行修改后,由于系统的原因,无法直接修改,可以使用 `git mv` 进行修改:
42+
* [`git mv` 批量修改脚本](https://github.com/fwqaaq/scripts/blob/main/shell/rename_file.sh)

0 commit comments

Comments
 (0)