Files
ClassContent/历届学生/front-end-team-10/每天课程/2023-02-04/笔记.txt
2024-09-27 02:06:13 +08:00

127 lines
2.3 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 版本控制系统
作者: linus linux
系统windows普通用户 linux (服务器操作系统 + 硬件)
作用:
版本控制
回滚 (时光倒流)
代码仓库
没有界面的软件!!
Github 有界面的git
gitee
gitlab 需要部署运行在自己公司的电脑里面
全球最大的代码 仓库!!
代码仓库
远程仓库
本地仓库
分支
master 主分支
dev 开发
test 测试
prod 正式
终端环境
git clone 远程仓库地址 下载代码!!
上传代码到服务器 (先拉后推)
git add 文件名字(-A 选中文件
git commit -m "设置上传备注"
git pull
git push 上传代码
如何同步服务器最新版本的代码到本地
git pull
git init 初始一个本地的仓库
git init
git add -A
git commit -m "first commit"
git remote add origin https://gitee.com/bmycode/front-end-team-10.git
git push -u origin "master"
同步 更改
git pull 拉取服务器最新代码到本地
git push 提交上传代码到服务器
仓库的登录地址
账户密码
web开发
web 前端 开发 界面 特效 功能
web 后端 开发 数据 安全 服务器
后端开发有3p
jsp java
php
asp c#
go
python
nodejs
web 前端 开发
html 超文本标签标记语言 人的骨骼 支撑这个网站布局的核心骨架
语法:
<开始单词 属性名="属性数值" ....> 放其他内容 </结束单词>
属性:
私有属性
公共属性
刺头: <开始单词/>
html 告诉浏览器,这个文件是一个网页
head 给浏览器看的内容放在这里面
body 给用户看的内容放在这里面
p 段落,用来放文字的
img 图片
h1 ~ h6 标题标签 数字越大显示效果越小
meta 元数据 标签
注意index 网站 首页
注释
html 实体符
css 层叠样式表 人的外貌 css就是将丑陋的html进行美化让用户喜欢这个页面
javascriptjs 脚本语言 人的思想大脑 特效 功能
web 网页
手机 app开发app小程序
桌面应用开发
服务器应用开发 nodejs