# movie **Repository Path**: honwam/movie ## Basic Information - **Project Name**: movie - **Description**: 仿猫眼电影院 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-16 - **Last Updated**: 2021-03-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 注意事项 ## 记住哟 ### 网址 1、微信开发者注册 https://mp.weixin.qq.com/ 2、微信开放文档 https://developers.weixin.qq.com/miniprogram/dev/framework/ 3、vue-cli搭建项目 封装axios element-ui https://blog.csdn.net/qq_38128179/article/details/101194569 ### 命令行 ``` Git 全局设置: git config --global user.name "Seven_Lin" git config --global user.email "840555774@qq.com" 创建 git 仓库: mkdir movie cd movie git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/Seven_Lin/movie.git git push -u origin master 已有仓库? cd existing_git_repo git remote add origin https://gitee.com/Seven_Lin/movie.git git push -u origin master ```