Compare commits

...

18 Commits
C ... master

Author SHA1 Message Date
11f7e06250 Merge branch 'master' of https://gitea.mhrooz.xyz/iicd/git-learner 2024-09-02 00:09:37 +02:00
fb0dd4d613 3.3 done 2024-09-02 00:09:29 +02:00
47fd86d4fa Merge pull request '0826 request merge' (#1) from danna/git-learner:master into master
Reviewed-on: #1
2024-08-26 13:56:20 +02:00
dan
4bb20fac5f 0826 request merge 2024-08-26 13:53:49 +02:00
8c6aed4ca1 blank commit 2024-08-25 22:05:19 +02:00
49c43b568f add notes 2024-08-25 00:00:06 +02:00
615467d28c add 2.9 notes 2024-08-22 20:13:03 +02:00
31f7a8f26d add 2.10 notes 2024-08-22 19:43:28 +02:00
c59ecd2869 sync test 4 2024-08-22 19:32:26 +02:00
18f2b57018 sync test 3 2024-08-22 19:32:14 +02:00
5f7b2c5779 sync test 2 2024-08-22 19:18:49 +02:00
0a3fecc92e sync test 1 2024-08-22 19:18:44 +02:00
6a398dcde8 Merge branch 'master' of https://gitea.mhrooz.xyz/iicd/git-learner 2024-08-21 01:13:35 +02:00
f9e486b837 Revert "modify Morgen.txt"
This reverts commit 37a4decc83.
2024-08-21 01:05:00 +02:00
37a4decc83 modify Morgen.txt 2024-08-20 23:20:31 +02:00
f2dd2b6d5c add hello.h 2024-08-20 23:19:55 +02:00
ca358d7dcb move .gitignore outside also works 2024-08-20 23:19:04 +02:00
a8029669af add git bisect part 2024-08-19 15:16:53 +02:00
9 changed files with 239 additions and 0 deletions

1
Morgen.txt Normal file
View File

@ -0,0 +1 @@
Guten Morgen

1
README
View File

@ -1,3 +1,4 @@
Hello. Hello.
Nice to meet you. Nice to meet you.
README README
Nice to meet you too

1
notes/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.pyc

49
notes/2.10-git_clone.md Normal file
View File

@ -0,0 +1,49 @@
## 2.10 git clone建立版本库克隆
### 2.10.1
!()[https://www.worldhello.net/gotgit/images/git-clone-pull-push.png]
```bash
git clone <repo> <dir>
git clone --bare <repo> <dir.git> # 不含工作区不注册不能用git fetch
git clone --mirror <repo> <dir.git> # 不含工作区注册可以用git fetch
```
```bash
git push [<remote-repos> [refspec>]]
git pull [<remote-repos> [refspec>]]
```
### 2.10.2 test
对本地的git仓库进行backup
```bash
git clone /path/to/my/workspace/demo /path/to/my/workspace/demo-backup
```
此时从主仓库到备用仓库中push是无法push的因为备用仓库不是bare repo用工作目录直接更新会导致工作目录和最新的commit不一致很奇怪。
此时应该从备用仓库中git pull。
git clone会自动在本地仓库中说明远程仓库是在哪
```bash
git remote -v
```
### 2.10.3 推送到裸仓库中
```bash
git push /path/to/bare/repo.git
```
### 2.10.4 创建裸版本仓库
```bash
git init --bare demo-init.git
```
```bash
git push /path/to/repo.git master:master #如果碰见没有指定的推送需要加上master:master
```

View File

@ -0,0 +1,3 @@
## 2.11 git库管理

View File

@ -0,0 +1,51 @@
## 2.9 改变历史
### 2.9.1 悔棋
`git commit --amend -m` 会将当前的暂存区staging area中的更改与上一次的提交合并为一个新的提交同时允许你修改提交信息。
```bash
git commit -amend -m "message" # 修改上次提交的message
```
添加一个误删的文件
```bash
git checkout HEAD^ -- <filename> # 从上次的提交恢复文件
git status
git commit --amend -m "message" # 将当前的修改添加到上次的提交中
```
### 2.9.2 多步悔棋
想要将最近的两个提交压缩为一个并把提交说明改为“modify hello.h”可以使用如下方法进行操作。
```bash
git reset --soft HEAD^^ # 重置到两次提交之前
git status
git commit -m "modify hello.h"
```
### 2.9.3 回到未来 git rebase
```bash
git cherry-pick # 从众多的提交中挑选出一个提交应用在当前的工作分支中
```
去掉某个commit
```bash
git checkout <commit> # 先切换到某次提交
git cherry-pick <commit> # 输入之后的提交
git checkout <branch> # 再切换回来
```
合并两次commit
```bash
git checkout [<tag>|<commit>]
git reset --soft HEAD^^ # 向前移动两次
git commit -C C # 提交重用C提交的提交说明
git cherry-pick E
git cherry-pick F
```

14
notes/3.1_git_protocal.md Normal file
View File

@ -0,0 +1,14 @@
## 3.1 Git Protocal
### 3.1.2
一般情况下,推送只允许“快进式”推送。
所谓快进式推送,就是要推送的本地版本库的提交是建立在**远程版本库相应分支的现有提交**基础上的,即远程版本库相应分支的最新提交是本地版本库最新提交的祖先提交。
```bash
git rev-list HEAD # 查看最新提交和历史提交
git ls-remote origin # 显示远程版本库引用对应的哈希值
```

View File

@ -0,0 +1,60 @@
## 3.2 resolve conflict
### 3.2.1 拉回操作中的合并
pull操作的第一阶段将共享版本库master分支的最新提交拉回到本地并且更新到本地版本库特定的引用。
第二阶段将本地分支master和共享版本库的本地跟踪分支origin/master进行合并操作。
push操作是将本地提交推送到共享版本库中。
`git pull = git fetch + git merge`
```bash
git merge [option...] <commit>...
```
### 3.2.2 自动合并
多个用户修改了不同的文件/相同文件的不同部分可以自动merge
1. 多个用户修改了不同的文件
2. 相同文件的不同部分(开头,结尾)
3. A用户移动文件B用户编辑文件自动merge会把编辑好的文件移动到对应位置
```bash
git fetch
git merge origin/master # origin/master就是共享版本库的本地分支
git push
```
### 3.2.3 逻辑冲突
存在逻辑冲突,需要在合并后进行单元测试
### 3.2.4 冲突解决
git pull以后会提示冲突文件如果忘记了用git status也可以
git会自动把冲突的位置用七个<和七个=以及七个>标记出来将他们删除掉修改成想要的代码就可以merge了
```bash
git log --oneline --graph -3
```
### 3.2.5 树冲突
文件处于不同状态,比如一个用户改名,另一个用户改成不同名字
```bash
git rm readme.txt
git rm doc/README.txt
git add README
```
本质上就是删除掉其他两个,留下来一个想要的

59
notes/3.3-git_touch.md Normal file
View File

@ -0,0 +1,59 @@
## 3.3 git 里程碑
### 3.3.1 显示里程碑
```bash
git tag # 显示里程碑
git tag -n1 # 显示1行里程碑的说明
git tag -l jx/v2* # 使用过滤器
```
```bash
git log --oneline --decorate # 查看提交对应的里程碑以及其他引用
```
```bash
git describe # 显示<tag>-<num-g<commit> <tag> name <num> commit num <commit> commit
```
```bash
git name-rev HEAD # 显示提交ID和其对应的一个引用 这里是HEAD和master
```
### 3.3.2 创建里程碑
```bash
git tag <tagname> [<commit>] # 轻量级里程碑
git tag -a <tagname> [<commit>]
git tag -m <msg> <tagname> [<commit>] # 带说明的里程碑
git tag -s <tagname> [<commit>]
git tag -u <key-id> <tagname> [<commit>] # 带GPG签名的里程碑
```
### 3.3.3 删除里程碑
```bash
git tag -d
```
### 3.3.4 不要更改里程
### 3.3.5 共享里程碑
```bash
git ls-remote origin my* # 查看以my开头的里程碑
```
```bash
git push origin mytag # 推送mytag到远端
git push origin refs/tags/* # 推送本地建立的所有里程碑
```
### 3.3.6 删除远端里程碑
```bash
git tag -d <tagname>
git push origin :<tagname>
```