Git bisect with merged commits

后端 未结 4 751
走了就别回头了
走了就别回头了 2021-02-02 06:17

I have a history that looks like this:

* 3830e61 Add data escaping.              (Bad)
* 0f5e148 Improve function for getting page template.
*   aaf8dc5 Merge br         


        
4条回答
  •  [愿得一人]
    2021-02-02 06:41

    You can select the range of commits with the "git start" command. The synopsis of the command is:

    git bisect start  
    

    In your specific case I think the right command would be:

    git bisect start 3830e61 107ca95
    

提交回复
热议问题