分类标签归档:git

git 基本操作


config 的三个作用域

git config --local # local 只对某个仓库有效
git config --global # golbal 对当前用户所有仓库有效
git config --system # system 对系统所有登陆的用户有效
git config

显示 config 的配置, 加 --list

git config --list --local
 git config --list --global
 git config --list --system

重命名

git mv a b

add 更新文件

git add -u

git 查看日志

gi

Read more