共计 1017 个字符,预计需要花费 3 分钟才能阅读完成。
根底命令
git help <command>
: 获取 git 命令的帮忙信息git init
: 创立一个新的 git 仓库,其数据会寄存在一个名为.git
的目录下git status
: 显示以后的仓库状态git add <filename>
: 增加文件到暂存区git commit
: 创立一个新的提交- 如何编写良好的提交信息
- 为何要编写良好的提交信息
git log
: 显示历史日志git log --all --graph --decorate
: 可视化历史记录(有向无环图)git diff <filename>
: 显示与暂存区文件的差别git diff <revision> <filename>
: 显示某个文件两个版本之间的差别git checkout <revision>
: 更新HEAD
和目前的分支
分支与合并
git branch
: 显示分支git branch <name>
: 创立分支git checkout -b <name>
: 创立分支并切换到该分支- 相当于
git branch <name>; git checkout <name>
git merge <revision>
: 合并到以后分支git mergetool
: 应用工具来解决合并抵触git rebase
: 将一系列补丁变基(rebase)为新的基线
远端操作
git remote
: 列出远端git remote add <name> <url>
: 增加一个远端git push <remote> <local branch>:<remote branch>
: 将对象传送至远端并更新远端援用git branch --set-upstream-to=<remote>/<remote branch>
: 创立本地和远端分支的关联关系git fetch
: 从远端获取对象 / 索引git pull
: 相当于git fetch; git merge
git clone
: 从远端下载仓库
撤销
git commit --amend
: 编辑提交的内容或信息git reset HEAD <file>
: 复原暂存的文件git checkout -- <file>
: 抛弃批改
Git 高级操作
git config
: Git 是一个高度可定制的工具git clone --depth=1
: 浅克隆(shallow clone),不包含残缺的版本历史信息git add -p
: 交互式暂存git rebase -i
: 交互式变基git blame
: 查看最初批改某行的人git stash
: 临时移除工作目录下的批改内容git bisect
: 通过二分查找搜寻历史记录.gitignore
文件: 指定成心不追踪的文件
正文完