# config-demo **Repository Path**: superbone/config-demo ## Basic Information - **Project Name**: config-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**: 2020-07-03 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 配置用户全局信息 >git config --global user.name "你的名字或昵称" >git config --global user.email "你的邮箱" ### 创建目录并进入 >mkdir config-demo >cd config-demo ### 初始化git >git init ### 创建文件 >touch README.md ### 将文件添加到git管理中 >git add . ### 提交修改 >git commit -m "first commit" ### 推送到远程仓库 >git remote add origin https://gitee.com/superbone/config-demo.git >git push -u origin master