1.新建代码库
1.1在当前目录新建一个 Git 代码库
$ git init
1.2新建一个目录,将其初始化为 Git 代码库
$ git init [project-name]
1.3下载一个项目和它的整个代码历史
$ git clone [url]
2.配置
Git 的设置文件为.gitconfig,它可以在用户主目录下(全局配置),也可以在项目目录下(项目配置)。
2.1设置提交代码时的用户信息
$ git config [--global] user.name "[name]"
$ git config [--global] user.email "[email address]"
2.2编辑 Git 配置文件
$ vim ~/.gitconfig
2.3显示当前的 Git 配置
$ git config --list
2.4显示当前的 Git 配置
$ cat ~/.gitconfig
3.增加/删除文件
3.1添加指定文件到暂存区
$ git add [file1] [file2] ...
3.2添加指定目录到暂存区,包括子目录
$ git add [dir]
3.3添加当前目录的所有文件到暂存区
$ git add .
3.4删除工作区文件,并且将这次删除放入暂存区
$ git rm 1.txt 2.txt
error: the following files have changes staged in the index:
1.txt
2.txt
(use --cached to keep the file, or -f to force removal)
3.4.1直接删除文件
$ git rm -fr 1.txt
3.4.2停止追踪指定文件,但该文件会保留在工作区
$ git rm --cached [file]
$ git rm --cached 1.txt 2.txt
rm ‘1.txt‘
rm ‘2.txt‘
3.5改名文件,并且将这个改名放入暂存区
$ git mv [file-original] [file-renamed]
4.代码提交
4.1提交暂存区到仓库区
$ git commit -m [message]
4.2提交暂存区的指定文件到仓库区
$ git commit [file1] [file2] ... -m [message]
4.3提交工作区自上次 commit 之后的变化,直接到仓库区
$ git commit -a
4.4提交时显示所有 diff 信息
$ git commit -v
4.5使用一次新的 commit,替代上一次提交如果代码没有任何新变化,则用来改写上一次 commit 的提交信息
$ git commit --amend -m [message]
5.分支
5.1列出所有本地分支
$ git branch
*表示当前分支
5.2列出所有远程分支
$ git branch -r
5.3列出所有本地分支和远程分支
$ git branch -a
5.4新建一个分支,但依然停留在当前分支
$ git branch [branch-name]
5.5新建一个分支,并切换到该分支
$ git checkout -b [branch]
5.6新建一个分支,指向指定 commit
5.6.1查看提交的日志
$ git log
commit 2cb44e585aab4d1b2370a3e42dc6d4070fe217dc (HEAD -> DevOps_RC, origin/master, master, DevOps_Release, DevOps_Dev)
Author: zhangsan <zhangsan@263.com>
Date: Sat Jul 10 11:03:12 2021 +0800
修改了ReadMe.md文件,添加了一行说明
commit 89d1d5b198a77deb9096e11b02aec7187221f384
Author: zhangsan <zhangsan@263.com>
Date: Sat Jul 10 10:59:09 2021 +0800
:...skipping...
commit 2cb44e585aab4d1b2370a3e42dc6d4070fe217dc (HEAD -> DevOps_RC, origin/master, master, DevOps_Release, DevOps_Dev)
Author: zhangsan <zhangsan@263.com>
Date: Sat Jul 10 11:03:12 2021 +0800
修改了ReadMe.md文件,添加了一行说明
commit 89d1d5b198a77deb9096e11b02aec7187221f384
Author: zhangsan <zhangsan@263.com>
Date: Sat Jul 10 10:59:09 2021 +0800
添加User文件夹
commit b54962a30b090f02a39fc3c6185750cf07b068ea
Author: zhangsan <zhangsan@263.com>
Date: Sat Jul 10 10:58:30 2021 +0800
添加忽略文件
commit e76012d77857841d344ac04893a158e75e8088fc
Author: zhangsan <zhangsan@263.com>
Date: Sat Jul 10 10:56:46 2021 +0800
添加Readme.md文件
5.6.2新建一个分支,指向指定 commit ID
$ git branch [branch] [commit]
$ git branch DevOps_V0.3FixBug 89d1d5b198a77deb9096e11b02aec7187221f384
5.7新建一个分支,与指定的远程分支建立追踪关系
$ git branch --track [branch] [remote-branch]
$ git branch --track DevOps_RC1 DevOps_RC
5.7.1DevOps_RC,增加一次提交
5.7.2DevOps_RC,再增加一次提交
5.8切换到指定分支,并更新工作区
5.8.1切换到建立追踪的分支DevOps_RC1
$ git checkout [branch-name]
$ git checkout DevOps_RC1
5.8.2从建立追踪的分支拉取最新的变化
$ git pull
5.9建立追踪关系,在现有分支与指定的远程分支之间
$ git branch --set-upstream [branch] [remote-branch]
5.10合并指定分支到当前分支
$ git merge [branch]
5.11选择一个 commit,合并进当前分支
$ git cherry-pick [commit]
5.12删除分支
$ git branch -d [branch-name]
5.13删除远程分支
$ git push origin --delete
$ git branch -dr
6.标签
6.1列出所有 tag
$ git tag
6.2新建一个 tag 在当前 commit
$ git tag [tag]
6.3新建一个 tag 在指定 commit
$ git tag [tag] [commit]
6.4查看 tag 信息
$ git show [tag]
6.5提交指定 tag
$ git push [remote] [tag]
6.6提交所有 tag
$ git push [remote] --tags
6.7新建一个分支,指向某个 tag
$ git checkout -b [branch] [tag]
7.查看信息
7.1显示有变更的文件
$ git status
7.2显示当前分支的版本历史
$ git log
7.3显示 commit 历史,以及每次 commit 发生变更的文件
$ git log --stat
7.4显示某个文件的版本历史,包括文件改名
$ git log --follow [file]
$ git whatchanged [file]
7.5显示指定文件相关的每一次 diff
$ git log -p [file]
7.6显示指定文件是什么人在什么时间修改过
$ git blame [file]
7.7显示暂存区和工作区的差异
$ git diff
7.8显示暂存区和上一个 commit 的差异
$ git diff --cached []
7.9显示工作区与当前分支最新 commit 之间的差异
$ git diff HEAD
7.10显示两次提交之间的差异
$ git diff [first-branch]...[second-branch]
7.11显示某次提交的元数据和内容变化
$ git show [commit]
7.12显示某次提交发生变化的文件
$ git show --name-only [commit]
7.13显示某次提交时,某个文件的内容
$ git show [commit]:[filename]
显示当前分支的最近几次提交
$ git reflog
8.远程同步
8.1下载远程仓库的所有变动
$ git fetch [remote]
8.2显示所有远程仓库
$ git remote -v
8.3显示某个远程仓库的信息
$ git remote show [remote]
8.4增加一个新的远程仓库,并命名
$ git remote add [shortname] [url]
8.5取回远程仓库的变化,并与本地分支合并
$ git pull [remote] [branch]
8.6上传本地指定分支到远程仓库
$ git push [remote] [branch]
8.7强行推送当前分支到远程仓库,即使有冲突
$ git push [remote] --force
8.8推送所有分支到远程仓库
$ git push [remote] --all
9.撤销
9.1恢复暂存区的指定文件到工作区
$ git checkout [file]
9.2恢复某个 commit 的指定文件到工作区
$ git checkout [commit] [file]
9.3恢复上一个 commit 的所有文件到工作区
$ git checkout .
9.4重置暂存区的指定文件,与上一次 commit 保持一致,但工作区不变
$ git reset [file]
9.5重置暂存区与工作区,与上一次 commit 保持一致
$ git reset --hard
9.6重置当前分支的指针为指定 commit,同时重置暂存区,但工作区不变
$ git reset [commit]
9.7重置当前分支的 HEAD 为指定 commit,同时重置暂存区和工作区,与指定 commit 一致
$ git reset --hard [commit]
9.8重置当前 HEAD 为指定 commit,但保持暂存区和工作区不变
$ git reset --keep [commit]
9.9新建一个 commit,用来撤销指定 commit
9.10后者的所有变化都将被前者抵消,并且应用到当前分支
$ git revert [commit]
======================================================================
创作不易,本人热衷开源共享 Git常用命令超级详细(全网最详细)
======================================================================