# 博客仓库 **Repository Path**: bluy/blog-backup ## Basic Information - **Project Name**: 博客仓库 - **Description**: 备份个人博客的仓库,用于随时查阅翻看 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-12-04 - **Last Updated**: 2023-12-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 备份个人博客的仓库,用于随时查阅翻看 远程仓库地址:https://gitee.com/yxx7318/blog-backup.git ## 创建git仓库 ``` mkdir blog-backup cd blog-backup git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/yxx7318/blog-backup.git git push -u origin "master" ``` ## 已有仓库 ``` cd existing_git_repo git remote add origin https://gitee.com/yxx7318/blog-backup.git git push -u origin "master" ```