git工具篇

git tools 工具篇

常用指令

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

你可能感兴趣的:(常用汇总,git,github)