# ly **Repository Path**: chuna233/ly ## Basic Information - **Project Name**: ly - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-14 - **Last Updated**: 2025-12-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ly ## Project Setup > 安装依赖 ```sh npm install ``` ### Compile and Hot-Reload for Development > 本地开发 ```sh npm run dev ``` ### Compile and Minify for Production > 打包发布代码 ```sh npm run build ``` ## git > *需要提前注册账号信息*(使用git需要做) ``` git config --global user.name '李宇' git config --global user.email 'ly223356@outlook.com' ``` > 第一次提交代码(第一次提交) ``` # 初始化仓库,只在第一次做 git init git add . git commit -m "第一次提交" # https的地址是自己的仓库 git remote add origin https://gitee.com/chuna233/ly.git git push -u origin "master" # 如果不行再使用下面推送 git push --force origin "master" ``` > 提交代码(后续修改代码) ```bash git config --global user.name '李宇' git config --global user.email 'ly223356@outlook.com' git add . git commit -m "备注" git push ``` > 拉取代码 ``` git clone https://gitee.com/chuna233/ly.git cd ly npm i npm run dev ``` ``` git pull ```