git工具的使用
- 配置用户身份
typescript
git config --global user.name = ''
git config --global user.email= ''
- 初始化仓库
typescript
git init 'path路径'
- 提交暂存区
typescript
git add . // .:代表当前目录
如何在本地去掉:
typescript
git restore -staged 文件名
- 提交本地库
typescript
git commit -m ' 提交填写信息'
当提交出现错误:
php
git reset _hard '提交ID' // ID 在 日志中查询前7位
- 查看历史
typescript
git log
- 回溯历史
typescript
git reflog
- 查看分支
typescript
git branch
- 创建分支
typescript
git branch '分支名称'
- 切换分支
typescript
git checkout '分支'
- 分支合并
typescript
git merge '分支'
- 冲突解决
typescript
1.git pull
2.git push
3.解决冲突(人工变更文件)
4.git push
-
查看git配置
git config -L(小写)
-
校验状态
git status
-
查看远程仓库
git remote
-
创建远程仓库(origin )
git remote add origin 'git仓库网址'
-
推送远程仓库
git push -u origin master
-
远程拉取
git pull