# 学习笔记 **Repository Path**: dengshi08/learning-notes ## Basic Information - **Project Name**: 学习笔记 - **Description**: 开始学习记录自己的学习资料。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-10 - **Last Updated**: 2024-10-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Git命令 ## Git 全局设置: ``` git config --global user.name "邓世奇" git config --global user.email "14993983+dengshi08@user.noreply.gitee.com" ``` ## 创建 git 仓库: ``` mkdir learning-notes cd learning-notes git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/dengshi08/learning-notes.git git push -u origin "master" ``` ### 已有仓库? cd existing_git_repo git remote add origin https://gitee.com/dengshi08/learning-notes.git git push -u origin "master" ## 后续提交方式 git add . git commit -m "新增了xx功能" git push -u origin "master"