An open API service indexing awesome lists of open source software.

https://github.com/yamaguchi1024/pr-bisect

Git bisect on pull requests
https://github.com/yamaguchi1024/pr-bisect

bisect git pull-request

Last synced: 2 months ago
JSON representation

Git bisect on pull requests

Awesome Lists containing this project

README

          

## git bisect on pull requests
This is a tool for doing git bisect based on pull requests. When your repository is using rebase when merging commits, you may want to bisect on pull requests rather than commits because git bisect doesn't work when some commits in one PR is broken.

## How to use
- apt install python3
- apt install python3-pip
- pip3 install PyGithub
- git clone https://github.com/yamaguchi1024/pr-bisect
- python3 pr-bisect.py org_name repo_name test_script.sh
- // If test_script.sh return 0, it means bad. Don't forget to chmod +x to test_script