现在的你,是否还顾及的上曾经的理想?
Mac book 常用快捷键
- 截图 command+shift+4
- 显示隐藏文件 command+shift+.
- 终端命令查看环境变量 echo $变量名
- 绝对路径直达 command+shift+G
- 打开刚关闭的网页 command+shift+T
- 刷新网页 command+R
- 强制退出应用 command+option+esc
Visual Studio Code 快捷键(mac)
- 打开控制台 command+shift+Y
- 格式化代码 option+shift+F
博客运行相关(mac)
1,vscode 打开控制台 command+shift+Y
2,jekyll build 编译 jekyll serve 运行服务
3,http://127.0.0.1:4000/ 浏览器打开
4,在Github 客户端上提交代码
博客运行相关(windows)
1,jekyll搭建的博客目录下右键 Git Bash Here
2, 运行服务 jekyll serve
3,浏览器打开 http://127.0.0.1:4000/
1, git branch —–查看当前分支
2, git pull —–更新代码到本地
4, git add . —–提交到暂存区
5, git commit -m “更新日志” —–提交到本地仓库
6, git push origin master —–提交到远程仓库
ionic 相关
- ionic serve
- ionic cordova build android
- npm -v
- node -v
- node-sass -v
- npm list //查看已安装的模块
- npm install -g moduleNames //安装Node模块到全局
- npm install –save moduleName //安装模块到本目录
- npm uninstall moudleName //卸载node模块
- npm root //查看当前包的安装路径
- npm root -g //查看全局的包的安装路径
- ionic platform add android //添加Android平台
- ionic cordova plugin rm com.. //移除插件
- ionic cordova plugin add com.. //添加插件
- ionic g page name //新建page页面
目录介绍:
node_moduls 存放所有的项目依赖库
package.json 项目依赖配置及开发者信息
app.js 程序启动文件
public 静态文件(css js img)
routes 路由文件(MVC中的C,controller)
Viesws 页面文件(Ejs模板)