Maison > développement back-end > tutoriel php > Git 命令速查表中文版

Git 命令速查表中文版

伊谢尔伦
Libérer: 2023-03-01 11:06:02
original
1062 Les gens l'ont consulté

创建

复制一个已创建的仓库:

$ git clone ssh://user@domain.com/repo.git
Copier après la connexion

创建一个新的本地仓库:

$ git init
Copier après la connexion

本地修改

显示工作路径下已修改的文件:

$ git status
Copier après la connexion

显示与上次提交版本文件的不同:

$ git diff
Copier après la connexion

把当前所有修改添加到下次提交中:

$ git add
Copier après la connexion

把对某个文件的修改添加到下次提交中:

$ git add -p <file>
Copier après la connexion

提交本地的所有修改:

$ git commit -a
Copier après la connexion

提交之前已标记的变化:

$ git commit
Copier après la connexion

附加消息提交:

$ git commit -m &#39;message here&#39;
Copier après la connexion

提交,并将提交时间设置为之前的某个日期:

git commit --date="`date --date=&#39;n day ago&#39;`" -am "Commit Message"
Copier après la connexion

修改上次提交
请勿修改已发布的提交记录!

$ git commit --amend
Copier après la connexion

把当前分支中未提交的修改移动到其他分支

git stash
git checkout branch2
git stash pop
Copier après la connexion

搜索

从当前目录的所有文件中查找文本内容:

$ git grep "Hello"
Copier après la connexion

在某一版本中搜索文本:

$ git grep "Hello" v2.5
Copier après la connexion

提交历史

从最新提交开始,显示所有的提交记录(显示hash, 作者信息,提交的标题和时间):

$ git log
Copier après la connexion

显示所有提交(仅显示提交的hash和message):

$ git log --oneline
Copier après la connexion

显示某个用户的所有提交:

$ git log --author="username"
Copier après la connexion

显示某个文件的所有修改:

$ git log -p <file>
Copier après la connexion

谁,在什么时间,修改了文件的什么内容:

$ git blame <file>
Copier après la connexion

分支与标签

列出所有的分支:

$ git branch
Copier après la connexion

切换分支:

$ git checkout <branch>
Copier après la connexion

创建并切换到新分支:

$ git checkout -b <branch>
Copier après la connexion

基于当前分支创建新分支:

$ git branch <new-branch>
Copier après la connexion

基于远程分支创建新的可追溯的分支:

$ git branch --track <new-branch> <remote-branch>
Copier après la connexion

删除本地分支:

$ git branch -d <branch>
Copier après la connexion

给当前版本打标签:

$ git tag <tag-name>
Copier après la connexion

更新与发布

列出当前配置的远程端:

$ git remote -v
Copier après la connexion

显示远程端的信息:

$ git remote show <remote>
Copier après la connexion

添加新的远程端:

$ git remote add <remote> <url>
Copier après la connexion

下载远程端版本,但不合并到HEAD中:

$ git fetch <remote>
Copier après la connexion

下载远程端版本,并自动与HEAD版本合并:

$ git remote pull <remote> <url>
Copier après la connexion

将远程端版本合并到本地版本中:

$ git pull origin master
Copier après la connexion

将本地版本发布到远程端:

$ git push remote <remote> <branch>
Copier après la connexion

删除远程端分支:

$ git push <remote> :<branch> (since Git v1.5.0)
Copier après la connexion


git push <remote> --delete <branch> (since Git v1.7.0)
Copier après la connexion

发布标签:

$ git push --tags
Copier après la connexion

合并与重置

将分支合并到当前HEAD中:

$ git merge <branch>
Copier après la connexion

将当前HEAD版本重置到分支中:
请勿重置已发布的提交!

$ git rebase <branch>
Copier après la connexion

退出重置:

$ git rebase --abort
Copier après la connexion

解决冲突后继续重置:

$ git rebase --continue
Copier après la connexion

使用配置好的merge tool 解决冲突:

$ git mergetool
Copier après la connexion

在编辑器中手动解决冲突后,标记文件为已解决冲突

$ git add <resolved-file>
$ git rm <resolved-file>
Copier après la connexion

撤销

放弃工作目录下的所有修改:

$ git reset --hard HEAD
Copier après la connexion

移除缓存区的所有文件(i.e. 撤销上次git add):

$ git reset HEAD
Copier après la connexion

放弃某个文件的所有本地修改:

$ git checkout HEAD <file>
Copier après la connexion

重置一个提交(通过创建一个截然不同的新提交)

$ git revert <commit>
Copier après la connexion

将HEAD重置到指定的版本,并抛弃该版本之后的所有修改:

$ git reset --hard <commit>
Copier après la connexion

将HEAD重置到上一次提交的版本,并将之后的修改标记为未添加到缓存区的修改:

$ git reset <commit>
Copier après la connexion

将HEAD重置到上一次提交的版本,并保留未提交的本地修改:

$ git reset --keep <commit>
Copier après la connexion


Étiquettes associées:
git
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal