# demo **Repository Path**: lisgroup/demo ## Basic Information - **Project Name**: demo - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-07-24 - **Last Updated**: 2024-07-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 快速设置— 如果你知道该怎么操作,直接使用下面的地址 https://gitee.com/lisgroup/demo.git 简易的命令行入门教程: Git 全局设置: ```shell git config --global user.name "lisgroup" git config --global user.email "lisgroup@qq.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/lisgroup/demo.git git push -u origin "master" ``` 已有仓库? ```shell cd existing_git_repo git remote add origin https://gitee.com/lisgroup/demo.git git push -u origin "master" ```