# webapi **Repository Path**: onetcore/webapi ## Basic Information - **Project Name**: webapi - **Description**: 使用Gentings库快速开发的前端项目。 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-19 - **Last Updated**: 2021-03-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 可以将项目Fork到你的本地github项目中,也可以clone到你的项目中,然后进行修改。 1. 克隆项目到你的本地文件夹中(`cores`) ```ssh git clone https://github.com/yourname/project.git cores ``` 2. 进到`cores`目录下,然后增加远程分支,名为`Yd`到本地 ```ssh git remote add Yd https://github.com/onetcore/webapi.git ``` 3. 运行命令:`git remote -v`, 会发现多出来了一个`Yd`的远程分支 ```ssh git remote -v ``` 4. 然后把远程原始分支`Yd`的代码拉到本地 ```ssh git fetch Yd ``` 5. 合并对方远程原始分支`Yd`的代码 ```ssh git merge Yd/master ``` 6. 最后把最新的代码推送到你的github上 ```ssh git push origin master ```