这里讲记录一些自己使用git时候的一些注意事项和小tips
git push到别人的分支如何回退
1.备份战场
建立新分支
git branch imsb
2.掩耳盗铃
回退
git checkout yuanfenzhi
git log找到那一串 commit代码
git reset --hard 一长串commit回退
1
2
3
4
5
6
7
8
9
10
11
|
--mixed
不删除工作空间改动代码,撤销commit,并且撤销git add . 操作
这个为默认参数,git reset --mixed HEAD^ 和 git reset HEAD^ 效果是一样的。
--soft
不删除工作空间改动代码,撤销commit,不撤销git add .
--hard
删除工作空间改动代码,撤销commit,撤销git add .
--hard HEAD commitid可以回到哪次提交
--hard HEAD^ 表示最近一次提交
|
3.暗度陈仓
git push --force
要用force因为push的版本小于远程仓库的版本
这样别人就察觉不到你push错了
将最近的13次提交合并
git rebase -i HEAD~13
pick 保留该commit
squash将该commit和前一个commit合并
至少保留一个pick,不然把head给删了
11.6 git
这是Unix 笔记的git部分
虽然之前学了下git,但学得不够深入,最近重新看了一下git的相关知识
Git 工作区、暂存区和版本库概念:
- **工作区:**就是你在电脑里能看到的目录。
- **暂存区:**英文叫 stage 或 index。一般存放在 .git 目录下的 index 文件(.git/index)中,所以我们把暂存区有时也叫作索引(index)。
- **版本库:**工作区有一个隐藏目录 .git,这个不算工作区,而是 Git 的版本库。
下面这个图展示了工作区、版本库中的暂存区和版本库之间的关系:

git clone、git push、git add 、git commit、git checkout、git pull

以前只会git push后面不加东西,然后在推送blog时出现了一些问题
命令格式如下:
1
|
git push <远程主机名> <本地分支名>:<远程分支名>
|
如果本地分支名与远程分支名相同,则可以省略冒号:
1
|
git push <远程主机名> <本地分支名>
|
实例
以下命令将本地的 master 分支推送到 origin 主机的 master 分支。
1
|
$ git push origin master
|
相等于:
1
|
$ git push origin master:master
|
如果本地版本与远程版本有差异,但又要强制推送可以使用 –force 参数:
1
|
git push --force origin master
|
删除主机但分支可以使用 –delete 参数,以下命令表示删除 origin 主机的 master 分支:
1
|
git push origin --delete master
|
分支
想push时不影响原来的远程分支,怎么办?回退很麻烦,那怎么办?
创建分支命令:
1
|
git branch (branchname)
|
切换分支命令:
1
|
git checkout (branchname)
|
当你切换分支的时候,Git 会用该分支的最后提交的快照替换你的工作目录的内容, 所以多个分支不需要多个目录。
合并分支命令:
你可以多次合并到统一分支, 也可以选择在合并之后直接删除被并入的分支。
开始前我们先创建一个测试目录:
1
2
3
4
|
$ mkdir gitdemo$ cd git-demo/
$ git initInitialized empty Git repository...
$ touch README$ git add README
$ git commit -m '第一次版本提交'[master (root-commit) 3b58100] 第一次版本提交 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 README
|
Git 分支管理
列出分支
列出分支基本命令:
没有参数时,git branch 会列出你在本地的分支。
此例的意思就是,我们有一个叫做 master 的分支,并且该分支是当前分支。
当你执行 git init 的时候,默认情况下 Git 就会为你创建 master 分支。
如果我们要手动创建一个分支。执行 git branch (branchname) 即可。
1
|
$ git branch testing$ git branch* master testing
|
现在我们可以看到,有了一个新分支 testing。
当你以此方式在上次提交更新之后创建了新分支,如果后来又有更新提交, 然后又切换到了 testing 分支,Git 将还原你的工作目录到你创建分支时候的样子。
接下来我们将演示如何切换分支,我们用 git checkout (branch) 切换到我们要修改的分支。
1
2
3
4
5
6
7
|
$ lsREADME$ echo 'runoob.com' > test.txt
$ git add .
$ git commit -m 'add test.txt'[master 3e92c19] add test.txt 1 file changed, 1 insertion(+) create mode 100644 test.txt
$ ls
README test.txt
$ git checkout testing
Switched to branch 'testing'$ lsREADME
|
当我们切换到 testing 分支的时候,我们添加的新文件 test.txt 被移除了。切换回 master 分支的时候,它们有重新出现了。
1
2
3
|
$ git checkout masterSwitched to branch 'master'
$ ls
README test.txt
|
我们也可以使用 git checkout -b (branchname) 命令来创建新分支并立即切换到该分支下,从而在该分支中操作。
1
2
3
4
5
6
7
8
9
10
|
$ git checkout -b newtest
Switched to a new branch 'newtest'
$ git rm test.txt rm 'test.txt'$ lsREADME$ touch runoob.php
$ git add .
$ git commit -am 'removed test.txt、add runoob.php'[newtest c1501a2] removed test.txt、add runoob.php 2 files changed, 1 deletion(-) create mode 100644 runoob.php delete mode 100644 test.txt
$ ls
README runoob.php
$ git checkout masterSwitched to branch 'master'
$ ls
README test.txt
|
如你所见,我们创建了一个分支,在该分支的上移除了一些文件 test.txt,并添加了 runoob.php 文件,然后切换回我们的主分支,删除的 test.txt 文件又回来了,且新增加的 runoob.php 不存在主分支中。
使用分支将工作切分开来,从而让我们能够在不同开发环境中做事,并来回切换。
删除分支
删除分支命令:
1
|
git branch -d (branchname)
|
例如我们要删除 testing 分支:
1
2
3
4
|
$ git branch* master testing
$ git branch -d testing
Deleted branch testing (was 85fc7e7).
$ git branch* master
|
分支合并
一旦某分支有了独立内容,你终究会希望将它合并回到你的主分支。 你可以使用以下命令将任何分支合并到当前分支中去:
1
2
3
4
5
6
|
git merge
$ git branch* master newtest
$ ls
README test.txt
$ git merge newtest
Updating 3e92c19..c1501a2Fast-forward runoob.php | 0 test.txt | 1 - 2 files changed, 1 deletion(-) create mode 100644 runoob.php delete mode 100644 test.txt$ lsREADME runoob.php
|
以上实例中我们将 newtest 分支合并到主分支去,test.txt 文件被删除。
合并完后就可以删除分支:
1
2
|
$ git branch -d newtest
Deleted branch newtest (was c1501a2).
|
删除后, 就只剩下 master 分支了:
合并冲突
合并并不仅仅是简单的文件添加、移除的操作,Git 也会合并修改。
1
2
|
$ git branch* master
$ cat runoob.php
|
首先,我们创建一个叫做 change_site 的分支,切换过去,我们将 runoob.php 内容改为:
创建 change_site 分支:
1
2
3
4
5
|
$ git checkout -b change_siteSwitched to a new branch 'change_site'
$ vim runoob.php
$head -3 runoob.php<?phpecho 'runoob';?>
$ git commit -am 'changed the runoob.php'
[change_site 7774248] changed the runoob.php 1 file changed, 3 insertions(+)
|
将修改的内容提交到 change_site 分支中。 现在,假如切换回 master 分支我们可以看内容恢复到我们修改前的(空文件,没有代码),我们再次修改 runoob.php 文件。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$ git checkout master
Switched to branch 'master'
$ cat runoob.php
$ vim runoob.php # 修改内容如下
$ cat runoob.php
<?php
echo 1;
?>
$ git diff
diff --git a/runoob.php b/runoob.php
index e69de29..ac60739 100644
--- a/runoob.php
+++ b/runoob.php
@@ -0,0 +1,3 @@
+<?php
+echo 1;
+?>
$ git commit -am '修改代码'
[master c68142b] 修改代码
1 file changed, 3 insertions(+)
|
现在这些改变已经记录到我的 “master” 分支了。接下来我们将 “change_site” 分支合并过来。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$ git merge change_site
Auto-merging runoob.php
CONFLICT (content): Merge conflict in runoob.php
Automatic merge failed; fix conflicts and then commit the result.
$ cat runoob.php # 代开文件,看到冲突内容
<?php
<<<<<<< HEAD
echo 1;
=======
echo 'runoob';
>>>>>>> change_site
?>
|
我们将前一个分支合并到 master 分支,一个合并冲突就出现了,接下来我们需要手动去修改它。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$ vim runoob.php
$ cat runoob.php
<?php
echo 1;
echo 'runoob';
?>
$ git diff
diff --cc runoob.php
index ac60739,b63d7d7..0000000
--- a/runoob.php
+++ b/runoob.php
@@@ -1,3 -1,3 +1,4 @@@
<?php
+echo 1;
+ echo 'runoob';
?>
|
在 Git 中,我们可以用 git add 要告诉 Git 文件冲突已经解决
1
2
3
|
$ git status -sUU runoob.php
$ git add runoob.php$ git status -sM runoob.php
$ git commit[master 88afe0e] Merge branch 'change_site'
|
现在我们成功解决了合并中的冲突,并提交了结果。
以上文字大多数摘自runoob.com,我感觉是写得非常有条理了,另外介绍一个学习gitbranch的神奇的网站,无聊的时候可以练练手。
https://learngitbranching.js.org/
2024-9
最近因为招新把这个网站通关了,以下是解法
基础篇
1
2
3
4
5
6
|
intro1
git commit
git commit
intro2
git branch bugFix
git checkout bugFix
|
intro3
-
创建新分支 bugFix
-
用 git checkout bugFix
命令切换到该分支
-
提交一次
-
用 git checkout main
切换回 main
-
再提交一次
-
用 git merge
把 bugFix
合并到 main
1
2
3
4
5
6
|
git branch bugFix
git checkout bugFix
git commit
git checkout main
git commit
git merge bugFix
|
intro4
要完成此关,执行以下操作:
高级篇
rampup1 分离HEAD
想完成此关,从 bugFix
分支中分离出 HEAD 并让其指向一个提交记录。
通过哈希值指定提交记录。每个提交记录的哈希值显示在代表提交记录的圆圈中。
rampup2 相对引用1
要完成此关,切换到 bugFix
的 parent 节点。这会进入分离 HEAD
状态。
如果你愿意的话,使用哈希值也可以过关,但请尽量使用相对引用!
rampup3 相对引用2
1
2
3
|
git branch -f bugFix HEAD~2
git branch -f main C6
git checkout C1
|
rampup4 撤销变更
1
2
3
4
|
git checkout local
git reset HEAD^
git checkout pushed
git revert HEAD
|
移动提交记录
move1 cherry-pick
1
|
git cherry-pick C3 C4 C7
|
move2 rebese
1
2
|
git rebase -i HEAD~4
按照C2 C5 C4顺序选中提交
|
杂项
mixed1
1
2
|
git checkout main
git cherry-pick C4
|
mixed2 提交的技巧1
1
2
3
4
|
git rebese -i HEAD~2 #将C2移到最前
git commit --amend
git rebese -i HEAD~2 #将C3移到最前
git branch -f main HEAD
|
mixed3 提交的技巧2
1
2
3
4
|
git checkout main
git cherry-pick C2
git commit --amend
git cherry-pick C3
|
mixed4 tag
1
2
3
|
git tag v1 C2
git tag v0 C1
git checkout C2
|
mixed5 describe
advanced1
1
2
3
4
5
|
没想出来,快速查看答案
git rebase main bugFix
git rebase bugFix side
git rebase side another
git rebase another main
|
rebase b1 b2后,head会指向b2,因此只需要首尾相连这些branch就好了
advanced2
1
|
git branch bugWork main~1^2~1
|
尝试很多次才打对的,做到这里我觉得git命令还是不及git gragh这些可视化插件来的快
Push & Pull —— Git 远程仓库!
1
2
3
4
5
6
7
8
9
10
|
#remote1
git clone
#remote2
git commit
git checkout o/main
git commit
#remote3 fetch
git fetch
#remote4 pull
git pull
|
remote5
这个有点难
1
2
3
4
5
|
git clone
git fakeTeamwork main 2
git fetch
git commit
git merge o/main
|
参考答案是
1
2
3
4
|
git clone
git fakeTeamwork main 2
git commit
git pull
|
还真是可以的,git fetch和git commit交换一下顺序,然后git pull就能代替两条命令了
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# remote6 push
git commit
git commit
git push
# remote7 偏离的提交历史
git clone
git commit
git pull --rebase
git push
#remote8 锁定的main
这题也没写出来Ww
git reset o/main
git checkout -b feature C2
git push origin feature
|
提问:如果想用git追踪符号链接指向的文件,这个文件在repo目录外,是否可行呢?