# 北京IT - CDN加速 **Repository Path**: beijingit/cdn ## Basic Information - **Project Name**: 北京IT - CDN加速 - **Description**: 公开文件,域名前路径采用“ https://gitee.com/beijingit/cdn/raw/master/ ”,之后按实际路径请求即可。 - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-20 - **Last Updated**: 2022-05-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: beijingit ## README # 公共CDN文件 > 共享文件,以及常用工具等。 ## 介绍 公开文件,域名前路径采用“ https://gitee.com/beijingit/cdn/raw/master/ ”,之后按实际路径请求即可。 ## 源码管理 ### 全局设置 ```shell script ## 当前账户 git config --global user.name "BeijingIT" git config --global user.email "beijingit@qq.com" ## 区分大小写 git config --global core.ignorecase false git config --global --get core.ignorecase ``` ### 项目设置 ```shell script ## 当前账户 git config user.name "BeijingIT" git config user.email "beijingit@qq.com" ## 区分大小写 git config core.ignorecase false git config --get core.ignorecase ``` ### 新建版本库 ```shell script cd /d D:\gitee\beijingit git clone https://gitee.com/beijingit/cdn.git cd cdn touch README.md git add README.md git commit -m "add README" git push -u origin master ``` ### 已存在文件夹 ```shell script cd /d D:\gitee\beijingit\cdn git init git remote add origin https://gitee.com/beijingit/cdn.git git add . git commit -m "init GitCode" git push -u origin master ``` ### 添加备份仓库 ```shell script # 添加备份仓库 git remote set-url --add origin https://gitee.com/liujinglei/cdn.git git remote -v # 同时提交至多个仓库 git add . git commit -m "Add Gitee Push" git push origin master:master ```