# PixiJS_Game_Development_Vue3 **Repository Path**: liu-guigui/PixiJS_Game_Development_Vue3 ## Basic Information - **Project Name**: PixiJS_Game_Development_Vue3 - **Description**: PixiJS Game Development Vue3 - **Primary Language**: Unknown - **License**: LGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-06-17 - **Last Updated**: 2024-03-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 启动命令 ## 更换电脑或第一次运行项目 - 清理modules ``` del node_modules ``` - 重新安装modules ``` npm install ``` ## 直接运行 ``` npm run dev ``` # git命令 ## 第一次打开项目必要注意 ### 注意clone 最好是使用git clone的命令拉项目,否则在上传git时容易出现远程仓库与本地仓库不匹配现象,导致无法git push origin master ### 重置配置 - 根目录创建git仓库 ``` git init ``` - 配置user.name ``` git config --global user.name "taotao" ``` - 配置user.email ``` git config --global user.email "2965883296@qq.com" ``` - 查看配置 ``` git config -l ``` - 查看当前用户(global)配置 ``` git config --global --list ``` - dos窗口执行(声明此连接安全) ``` git config --global --add safe.directory "*" ``` 原笔记链接:https://blog.csdn.net/qq_39123467/article/details/124719424 ## 一般提交 ``` git add . git commit -m"测试" git push origin master ``` - 拉取Master并覆盖当前 > git reset --hard origin/master # 样式注意 - 主题颜色 - 粉色 > background-color: #f7cac9; - 蓝色 > background-color: #8fd3f4; - 粉蓝混合 > background: radial-gradient(circle at center, #f7cac9, #8fd3f4);