# demo **Repository Path**: itaige/demo ## Basic Information - **Project Name**: demo - **Description**: 创建一个测试的仓库 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-17 - **Last Updated**: 2022-11-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # demo项目 * 项目的描述 ### 简易的命令行入门教程: Git 全局设置: ```shell git config --global user.name "张涛" git config --global user.email "tao.zhang.tc@163.com" ``` ### 创建 git 仓库: ```shell mkdir demo cd demo git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/itaige/demo.git git push -u origin "master" ``` ### 已有仓库? ```shell cd existing_git_repo git remote add origin https://gitee.com/itaige/demo.git git push -u origin "master" ```