Browse Source

Merge pull request #3940 from Calinou/bisecting-regressions-clarify-command

Use a more explicit `git bisect` command in Bisecting regressions
Rémi Verschelde 4 năm trước cách đây
mục cha
commit
d27279babe
1 tập tin đã thay đổi với 5 bổ sung3 xóa
  1. 5 3
      community/contributing/bisecting_regressions.rst

+ 5 - 3
community/contributing/bisecting_regressions.rst

@@ -95,9 +95,11 @@ folder and enter the following command:
 
 .. code-block:: shell
 
-    # <good> is the commit hash of the build that works as expected.
-    # <bad> is the commit hash of the build exhibiting the bug.
-    $ git bisect start <good> <bad>
+    # <good commit hash> is hash of the build that works as expected.
+    # <bad commit hash> is hash of the build exhibiting the bug.
+    $ git bisect start
+    $ git bisect good <good commit hash>
+    $ git bisect bad <bad commit hash>
 
 Compile Godot. This assumes you've set up a build environment: