We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 44b9d61 + 66bbcf2 commit 89a101cCopy full SHA for 89a101c
Git/git-en.md
@@ -28,9 +28,9 @@ You should use `rebase` on the local branchs which need be rebased. If you need
28
```shell
29
## branch develop
30
git rebase master
31
-get checkout master
+git checkout master
32
## move HEAD on `master` to the latest commit
33
-get merge develop
+git merge develop
34
```
35
36
## stash
Git/git-zh.md
@@ -30,9 +30,9 @@ Rebase 对比 merge,优势在于合并后的结果很清晰,只有一条线
## 用于将 `master` 上的 HEAD 移动到最新的 commit
37
38
0 commit comments