# git **Repository Path**: myfootprints/git ## Basic Information - **Project Name**: git - **Description**: git学习记录 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-30 - **Last Updated**: 2021-09-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Gitee I am comming #### 主要功能 Git及Gitee的学习记录。 #### gitee官方的参考指令 //------------------------------------------------------------ 简易的命令行入门教程: Git 全局设置: ```git git config --global user.name "明轩Footprints" git config --global user.email "fxz_abc@163.com" ``` 创建 git 仓库: ```git mkdir git cd git git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/myfootprints/git.git git push -u origin master cd existing_git_repo git remote add origin https://gitee.com/myfootprints/git.git git push -u origin master ```