|
@@ -0,0 +1,52 @@
|
|
|
+# Web3练习作业
|
|
|
+- 作者 林财明
|
|
|
+- 学号 0210427
|
|
|
+修改一下
|
|
|
+
|
|
|
+# 项目结构
|
|
|
+- docs/ 学习笔记、产品文档
|
|
|
+ - day1.md 第一天练习作业
|
|
|
+- task/ 课堂代码练习作业
|
|
|
+ - day1.html
|
|
|
+- README.md 项目说明
|
|
|
+
|
|
|
+# FAQ:常见git备注信息
|
|
|
+``` sh
|
|
|
+# 初始化项目
|
|
|
+git commit -m "init: xxxxx"
|
|
|
+# 新增特性(目录、文件等)
|
|
|
+git commit -m "feat: xxxxx"
|
|
|
+# 修复功能
|
|
|
+git commit -m "fix: xxxxx"
|
|
|
+# 更新功能
|
|
|
+git commit -m "update: xxxxx"
|
|
|
+```
|
|
|
+
|
|
|
+# FAQ:提交到远程版本分支
|
|
|
+``` sh
|
|
|
+git remote add origin https://codehub-cn-south-1.devcloud.huaweicloud.com/web300003/web3-0210427.git
|
|
|
+git push -u origin master
|
|
|
+```
|
|
|
+
|
|
|
+# FAQ:HTML静态项目预览方法
|
|
|
+- VSCode 左侧打开扩展,搜索:Live Server,安装
|
|
|
+- 右键已经打开的 xxx.html ,选择Open with Live Server
|
|
|
+
|
|
|
+# FAQ:文档基本用法
|
|
|
+- 预览Markdown Ctrl+Shift+V
|
|
|
+
|
|
|
+<h1>标题1</h1>
|
|
|
+<h2>标题2</h2>
|
|
|
+
|
|
|
+# 标题1
|
|
|
+## 标题2
|
|
|
+
|
|
|
+
|
|
|
+# FAQ:HTML网页预览插件
|
|
|
+- 左侧,插件,Live Server
|
|
|
+- 右键 .html文件,预览
|
|
|
+
|
|
|
+# FAQ.初始化项目的参考过程
|
|
|
+- 根目录,创建README.md
|
|
|
+- 创建需要的笔记目录 /docs
|
|
|
+- 在README.md中编写项目介绍
|