# Vue-project **Repository Path**: project-resource-sharing/vue ## Basic Information - **Project Name**: Vue-project - **Description**: 项目展示 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-01 - **Last Updated**: 2022-09-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README vue create myapp git add . git commit -m 项目初始化完成 git remote add origin https://xxxx => ssh git push -u origin master // 项目创建者 git checkout -b zs // 切换到分支后,开发 // 其他开发者 git clone xxx git checkout -b 自己的分支 // 开发 // 所有的开发提交分支代码到远程 git add . git commit -m xxx git push origin zs // lisi git pull zs // 在拉取的分支可自己的分支中进行合并 // lisi git merge zs 可能会有冲突 git add . git commit -m xxx git push origin lisi