# git **Repository Path**: browniu/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**: 2019-05-25 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # git #### 介绍 关于git的各种骚操作 #### git 命令 # 配置账户 git config --global user.name "browniu" $ git config --global user.email "niuniusoga@qq.com" # 添加暂存 git add . # 提交更改 git commit -m '$' # 添加并提交 git commit -a -m '$' # 远程推送 git push # 保存密码 git config --global credential.helper store # 完整流程 git init git add . git commit -m 'hint message' git remote add origin 'your project repositories href on github' git pull origin master git push -u origin master