git config
- 1
config 配置有system级别 global(用户级别) 和local(当前仓库)三个 设置先从system-》global-》local 底层配置会覆盖顶层配置 分别使用–system/global/local 可以定位到配置文件
查看系统config
git config --system --list
- 1
查看当前用户(global)配置
git config --global --list
- 1
查看当前仓库配置信息
git config --local --list
- 1
查看user.name
git config user.name
- 1
查看user.email
git config user.email
- 1
修改user.name
git config --global --replace-all user.name "your user name"
- 1
修改user.email
git config --global --replace-all user.email"your user email"
- 1
git其他命令
1、强制推送(慎用,除非你认为其他冲突等可以丢弃 或者不是很重要)
git push -- force
- 1
2、常用命令
# 初始化 在工作路径上创建主分支
git init
# 克隆远程仓库
git clone 地址
# 克隆分支的代码到本地
git clone -b 分支名 地址
# 查看状态
git status
# 将某个文件存入暂存区
git add 文件名
# 把b和c存入暂存区
git add b c
# 将所有文件提交到暂存区
git add .
# 一个文件分多次提交
git add -p 文件名
# 提交到仓库
git commit -m "提交的备注信息"