Let the learning begin

本项目用于创建GitHub的个人主页, 存放配置文件, 代码片段和其他可以公开的资料~
- [项目源代码]https://github.com/lhsfcboy/lhsfcboy.github.io
- https://lhsfcboy.github.io/
文件夹 & 文件名的命名规范
- 基本原则先英文后汉语
- 首字母大小写
- 保持GitHub网站, Linux, Windows等主要平台下, 文件排序顺序一致
- 同一层级的文件名其首字母大小写保持一致
- 同一层级的文件夹名其首字母大小写保持一致
- 大小写字母, 数字, 汉字以外, 可以使用短横线和下划线
- 禁止空格
- 控制使用标点
- 优先使用英文标点
- 谨慎使用中文标点
- 谨慎使用不常见的字符
- 谨慎使用中文与英文以外的其他语言
- 谨慎使用全大写的文件名
Git快速配置笔记
从远程clone到本地
cd path-to-parent_folder
git clone https://github.com/username/repo.git
把本地的项目链接到远程
echo "# repo-name" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:username/repo-name.git
git push -u origin main