1.常用命令
// 设置用户信息
git config --global user.name "xxx"
git config --global user.password "123456"
git config --global user.email "1371437084@qq.com"
// 查看用户信息
git config --global user.name
git config --global user.password
git config --global user.email
// 查看当前用户(global)配置
git config --global --list
// 查看当前仓库配置信息
git config -- local --list
______________________________________________________________________________________________
// 在目录中初始化本地Git 仓库
git init
// 工作区添加文件至暂存区 `.` 通配符:所有文件
git add .
// 提交到本地仓库
git commit -m "提交说明"
// 查看提交日志
git log
// 版本回退 `commimID:`提交版本的ID
git reset --hard commimID
// 本地代码同步到远程仓库 `origin:`仓库名;`master:`分支名
git push origin master
// 克隆
git clone 地址 名字
// 抓取、拉取 抓取:
// 将仓库里的更新都抓取到本地,不会进行合并(不指定远程仓库名和分支名,则抓取所有分支)
// 拉取:将远程仓库的修改拉取到本地并自动进行合并,等同于`fetch + merge`
git fetch 远程仓库名 分支名
git pull 远程仓库名 分支名
______________________________________________________________________________________________
// 查看分支
git branch
// 切换分支
git checkout 分支名
// 创建并切换分支
git checkout -b 分支名
// 合并分支
git merge 分支名
// 删除分支
git branch -d 分支名
// 关联远程仓库
git remote add 名字 地址
// 查看仓库
git remote
// 修改远程仓库地址
git remote set-url origin <remote-url>
// 仓库路径查询
git remote -v
2.解决GitBash乱码问题
(1)打开GitBash执行以下命令
git config --global core.quotepath false
(2)$(git_home}/etc/bash.bashrc
文件最后加入下面两行
export LANG="zh_CN.UTF-8"
export LC_ALL="zh_CN.UTF-8"