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
- Host: GitHub
- URL: https://github.com/yamaguchi1024/pr-bisect
- Owner: yamaguchi1024
- Created: 2018-03-15T16:07:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-22T15:38:23.000Z (over 8 years ago)
- Last Synced: 2025-10-19T10:45:00.382Z (8 months ago)
- Topics: bisect, git, pull-request
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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