单页面,多页面引入Vue.js
复杂单页面应用Vue.cli工具
开发工作流
需求调研
交互设计,逻辑设计,接口设计
代码实验,测试运行,线上部署
git
git clone 地址 (远程仓库下载代码到本地目录)
git status (查看在哪个分支和有无提交)
ls (查看)
git branch -a (查看本地分支远程分支)
git branch
touch 文件名 (创建文件)
git add . (将所有本地文件添加到待提交待处理的状态)
git commit -m “注释” (本次提交注释)
git remote -v (查看推送到哪里去)
git push origin master (提交到远程主干分支)
git checkout -b 分支名 (创建分支)
git checkout 分支名 (切换分支)
git merge 分支名 (合并分支)
git branch -D 分支名 (删除本地分支)
git branch -a (查看本地远程分支)
git push origin :分支名 (删除远程分支)
git reset –haed head^ (回退)
git log(日志)
git relog
git reset –hard HEAD@{1}