We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f8bb810 + f7256fb commit f6bd077Copy full SHA for f6bd077
src/tools/git-memo/git-memo.content.md
@@ -75,3 +75,30 @@ Renaming the local master branch to main
75
```shell
76
git branch -m master main
77
```
78
+
79
+Checking log graph
80
+```shell
81
+git log --graph
82
+```
83
84
+Checking log graph (merges only)
85
86
87
+git log --graph --merges
88
89
90
+Tracking down a bad commit using binary search
91
92
93
+git bisect start
94
+git bisect good 13c988d4f15e06bcdd0b0af290086a3079cdadb0
95
+git bisect bad ca82a6dff817ec66f44342007202690a93763949
96
97
98
+Pulling new changes into current branch from mainline
99
100
101
+git checkout [branch-name]
102
+git fetch origin [master-branch-name]
103
+git rebase origin/[master-branch-name]
104
0 commit comments