命令分类 设置和配置 git config help 获取和创建项目 init clone 基本快照 add status diff commit reset rm mv 分支和合并 branch checkout merge mergetool log stash tag worktree 共享和更新项目 fetch pull push remote submodule 检查和比较 show log diff shortlog describe 修补 apply cherry-pick diff rebase revert 调试 bisect blame grep 【git】 语法: git [--version] [--help] [-C <path>] [-c <name>=<value>] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path] [-p|--paginate|--no-pager] [--no-replace-objects] ...... Git中文命令[参数]大全 git
查看git安装位置 where git 查看git版本 git version 检查 Git 的某一项配置 git config user.name 查看所有配置以及他们所在的文件 git config --list --show-origin 由于 Git 会从多个文件中读取同一配置变量的不同值,因此你可能会在其中看到意料之外的值而不知道为什么。 此时,你可以查询 Git 中该变量的 原始 值,它会告诉你哪一个配置文件最后设置了该值: git config --show-origin user.name 设置用户名和邮件地址 git config --global user.name "John Doe" git config --global user.email johndoe@example.com 配置git的默认编辑器为NotePad++ git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noP..... Git操作指令收集 git