git tools 工具篇
相关网址
常用指令
git clone <URL> 克隆开源库
git clone -b <分支名称> <URL> 克隆下载指定分支
git clone -b <分支名称> <tag> <URL> 克隆下载指定分支指定tag
git clone --recursive <URL> 下载主仓库的所有项目内容
git checkout <tag> 切换到tag代码
git init 新建代码库
git diff 显示暂存区和工作区的差异
git add <.|dir|name> 添加文件到暂存区
git status 显示有变更的文件
git log 显示当前分支的版本历史
git commit -m <desript> 提交暂存区到仓库区
git checkout . 恢复上一个commit的所有文件到工作区
git config list 显示当前的Git配置
git config --global user.name <name> 设置提交代码时用户名
git config --global user.email <email address> 设置提交代码时邮箱
git rm --cached <file> 停止追踪指定文件
git branch 列出所有本地分支
git branch -a 列出所有本地分支及远程分支
git branch -d <name> 删除分支
git branch -dr <remote/branch> 删除远程分支
git merge <name> 合并指定分支到当前分支
git tag 列出所有tag
git tag <descript> 新建一个tag到当前commit
git tag <descript> <commit> 新建一个tag到指定commit
git push <remote> <tag> 提交指定tag
git push <remote> --tags 提交所有tag
git diff <first-branch>...<second-branch> 显示两次提交之间的差异
git pull <remote> <branch> 取回远程仓库的变化,并与本地分支合并
git push <remote> <branch> 上传本地指定分支到远程仓库
git push <remote> --force 强行推送当前分支到远程仓库,即使有冲突
git reset --hard 重置暂存区与工作区,与上一次commit保持一致
git reset --hard <commit> 重置当前分支的HEAD为指定commit,同时重置暂存区和工作区,与指定commit一致
git submodule 查看子模块
git submodule add <URL> <name> 添加一个子模块
git submodule init 初始化子模块
git submodule update --init --recursive 更新拉取子模块
git submodule update 更新项目内子模块到最新版本
git switch [分支名称] 创建分支
git switch -c [分支名称] 创建分支并切换到分支