# BackendDevelop **Repository Path**: chen_zufeng/backend-develop ## Basic Information - **Project Name**: BackendDevelop - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-12 - **Last Updated**: 2021-10-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Swagger # Git ## HTTPS/SSH HTTPS:[https://gitee.com/chen_zufeng/backend-develop.git](https://gitee.com/chen_zufeng/backend-develop.git) SSH:[git@gitee.com:chen_zufeng/backend-develop.git](git@gitee.com:chen_zufeng/backend-develop.git) ## Git 全局设置 ```markdown git config --global user.name "Chenzufeng" git config --global user.email "chenzufeng@outlook.com" ``` ## 创建 git 仓库 ```markdown mkdir backend-develop cd backend-develop git init touch README.md git add README.md git commit -m "first commit" git remote add origin git@gitee.com:chen_zufeng/backend-develop.git git push -u origin master ``` ## 已有仓库 ```markdown cd existing_git_repo git remote add origin git@gitee.com:chen_zufeng/backend-develop.git git push -u origin master ```