Python:目录结构调整
This commit is contained in:
parent
f4490bb74c
commit
d5957d8aec
@ -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 使用的是 0x0A(LF),早期的 Mac OS 使用的是 0x0D(CR),后来的 OS X 在更换内核后与 UNIX 保持一致了。但 DOS/Windows 一直使用 0x0D0A(CRLF) 作为换行符。
|
**文本文件所使用的换行符,在不同的系统平台上是不一样的。**UNIX/Linux 使用的是 0x0A(LF),早期的 Mac OS 使用的是 0x0D(CR),后来的 OS X 在更换内核后与 UNIX 保持一致了。但 DOS/Windows 一直使用 0x0D0A(CRLF) 作为换行符。
|
||||||
|
8
wiki/dev/Python/入门/_category_.json
Normal file
8
wiki/dev/Python/入门/_category_.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"label": "入门",
|
||||||
|
"position": 2,
|
||||||
|
"link": {
|
||||||
|
"type": "generated-index",
|
||||||
|
"title": "入门"
|
||||||
|
}
|
||||||
|
}
|
8
wiki/dev/Python/文化/_category_.json
Normal file
8
wiki/dev/Python/文化/_category_.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"label": "文化",
|
||||||
|
"position": 1,
|
||||||
|
"link": {
|
||||||
|
"type": "generated-index",
|
||||||
|
"title": "文化"
|
||||||
|
}
|
||||||
|
}
|
8
wiki/dev/Python/进阶/_category_.json
Normal file
8
wiki/dev/Python/进阶/_category_.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"label": "进阶",
|
||||||
|
"position": 3,
|
||||||
|
"link": {
|
||||||
|
"type": "generated-index",
|
||||||
|
"title": "进阶"
|
||||||
|
}
|
||||||
|
}
|
8
wiki/dev/Python/高级/_category_.json
Normal file
8
wiki/dev/Python/高级/_category_.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"label": "高级",
|
||||||
|
"position": 4,
|
||||||
|
"link": {
|
||||||
|
"type": "generated-index",
|
||||||
|
"title": "高级"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user