Files
ClassContent/历届学生/韩一伟/每天课程/2021-06-16/笔记.txt
2024-09-27 02:06:13 +08:00

74 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

git 版本控制
解释:就是控制各种文件的版本和修改记录的合并
可以文件回滚(后悔药)
公司会有一个服务器(远程仓库)
本地仓库
web版本的界面
github 全球最大的同性交友网站
全球最大的代码仓库
gitee 码云
gitlab 免费的
.gitignore 忽略文件,控制哪些文件不上传
git 分支模型(代码的三个阶段)
开发
测试
生产
git init表示初始化一个本地的git仓库
git add -A 决定哪些文件需要被上传, -A 全部上传
git commit -m "上传的备注" 设置此次上传的备注信息
git pull 拉取(下载)
git push 推送(上传)
git clone 项目地址
mdmarkdown
前端三个东西
html 做结构
css 做样式
js 做功能 & 特效交互
webstorm
标签分为两种:
块级标签可以通过css设置宽高并且独占一行的标签
divph1 ~ h6, ul, ol, li
行内标签不可以通过css设置宽高不独占一行的标签多个标签可以横着放在一行
aimgspan, video, input
为什么标签要分类:
为了实现布局!!!
网页中重复性布局使用 ul来实现