# rentWebStore **Repository Path**: Alexander__lu/rent-web-store ## Basic Information - **Project Name**: rentWebStore - **Description**: 开发一个租赁网站,帮助人们发布自己的闲置物品供人租赁 - **Primary Language**: Java - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 0 - **Created**: 2022-08-20 - **Last Updated**: 2023-10-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # rentWebStore #### 参与贡献 //克隆仓库 #### git clone https://gitee.com/Alexander__lu/rent-web-store.git //新建一个分支,叫newfeature,切换到该分支 #### git checkout -b newfeature //修改代码,提交 #### git add . #### git commit -m"XXX" //将新分支的commit push到远程仓库 #### git push origin newfeature #### 前往gitee仓库网址,新建pull request,源分支选newfeature,目标分支选master //切换到master分支 #### git checkout master //删除本地newfeature分支 #### git branch -d newfeature //删除远程仓库newfeature分支 #### git push origin --delete newfeature