https://github.com/pablosproject/git-tricks-article
https://github.com/pablosproject/git-tricks-article
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/pablosproject/git-tricks-article
- Owner: pablosproject
- Created: 2024-11-06T11:40:45.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-06T11:40:57.000Z (over 1 year ago)
- Last Synced: 2025-03-18T08:16:32.796Z (over 1 year ago)
- Language: JavaScript
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Git Bisect Tutorial Project
This is a demo project created to help developers understand how `git bisect` works. It consists of a simple calculator class in Node.js that has a deliberate bug introduced in its history.
The project shows how a simple multiplication function goes from working correctly to having a bug through a series of commits. By using `git bisect` and the project's test suite, you can practice finding exactly when the bug was introduced.
This repository is part of an article about using git bisect effectively in your development workflow. It demonstrates how automated tests can be combined with git bisect to quickly identify problematic changes in your codebase.
To get started:
```bash
npm install
npm test
```