# 飞行射击 **Repository Path**: DevSpeed/flying-shooting ## Basic Information - **Project Name**: 飞行射击 - **Description**: No description available - **Primary Language**: JavaScript - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-30 - **Last Updated**: 2021-08-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 安装运行说明 + 需要安装nodejs 8.0+ + 安装 npm install 或 cnpm install + 运行 npm run dev + 打包 npm run build 打包后路径 /dist ## git 相关参数配置 #### 注册git 提交时的账户及邮箱 (注意,需要替换为自己的姓名及邮箱) ``` git config --global user.name "穆松鹤" git config --global user.email "2270161467@qq.com" ``` ### 创建 git 仓库 Create a new repository ``` git clone http://60.205.207.160:38054/root/province_front.git cd province_front touch README.md git add README.md git commit -m "add README" git push -u origin master ``` Push an existing folder ``` cd existing_folder git init git remote add origin http://192.168.0.224:6880/root/province_front.git git add . git commit -m "Initial commit" git push -u origin master ``` Push an existing Git repository ``` cd existing_repo git remote rename origin old-origin git remote add origin http://192.168.0.224:6880/root/province_front.git git push -u origin --all git push -u origin --tags ```