1
0

Python:目录结构调整

This commit is contained in:
周中平 2022-10-16 16:23:25 +08:00
parent f4490bb74c
commit d5957d8aec
No known key found for this signature in database
GPG Key ID: B1DF9DD42D8E00DC
11 changed files with 38 additions and 0 deletions

View File

@ -19,6 +19,12 @@ Git 配置文件分为三级,系统级(--system、用户级--global
2. **用户级**~/.gitconfig使用 `git config --global user.name "7wate"` ,`git config --global user.email "admin@7wate.com"` 来进行配置,该配置**对当前用户上所有的仓库有效**。 2. **用户级**~/.gitconfig使用 `git config --global user.name "7wate"` ,`git config --global user.email "admin@7wate.com"` 来进行配置,该配置**对当前用户上所有的仓库有效**。
3. **目录级**.git/config使用 `git config --local user.name "7wate"` , `git config --local user.email "admin@7wate.com"` 来进行配置,**只对当前仓库生效。** 3. **目录级**.git/config使用 `git config --local user.name "7wate"` , `git config --local user.email "admin@7wate.com"` 来进行配置,**只对当前仓库生效。**
## Git 设置默认分支
```shell
git config --global init.defaultBranch <name>
```
## Git 多平台换行符问题(LF or CRLF) ## Git 多平台换行符问题(LF or CRLF)
**文本文件所使用的换行符,在不同的系统平台上是不一样的。**UNIX/Linux 使用的是 0x0ALF早期的 Mac OS 使用的是 0x0DCR后来的 OS X 在更换内核后与 UNIX 保持一致了。但 DOS/Windows 一直使用 0x0D0ACRLF 作为换行符。 **文本文件所使用的换行符,在不同的系统平台上是不一样的。**UNIX/Linux 使用的是 0x0ALF早期的 Mac OS 使用的是 0x0DCR后来的 OS X 在更换内核后与 UNIX 保持一致了。但 DOS/Windows 一直使用 0x0D0ACRLF 作为换行符。

View File

@ -0,0 +1,8 @@
{
"label": "入门",
"position": 2,
"link": {
"type": "generated-index",
"title": "入门"
}
}

View File

@ -0,0 +1,8 @@
{
"label": "文化",
"position": 1,
"link": {
"type": "generated-index",
"title": "文化"
}
}

View File

@ -0,0 +1,8 @@
{
"label": "进阶",
"position": 3,
"link": {
"type": "generated-index",
"title": "进阶"
}
}

View File

@ -0,0 +1,8 @@
{
"label": "高级",
"position": 4,
"link": {
"type": "generated-index",
"title": "高级"
}
}