Git学习笔记
作者:互联网
常用命令:
git config -global user.name 用户名 设置用户签名
git config -global user.email 邮箱
git init 初始化本地库
git status 查看本地库状态
git add 文件名 添加到暂存区
git commit -m "日志信息"文件名 提交到本地库
git reflog 查看历史记录
git reset --hard 版本号 版本穿梭
分支操作
git branch 分支名 创建分支
git beanch -v 查看分支
git checkout 分支名 切换分支
git checkout -b 分支名 新建并自动切换
git merge 分支名 把指定分支合并到当前分支
git push 提交到GitHub/码云
git pull 从上面拉取代码
标签:git,config,global,笔记,学习,Git,user,checkout,分支 来源: https://www.cnblogs.com/Bnana/p/16328833.html