There are effectively 7 steps to bisecting:
git bisect startgit bisect good <commitish> (a commit where you're sure the bug wasn't present)git bisect bad <commitish> (a commit where you're sure the bug was present)git bisect good or git bisect bad to say the current commit is good or badgit bisect completes)git bisect resetYour boss just chewed you out because the scan.sh script should never have been added to the repo!
Not only does she want the contents of the script erased, but she wants to know when the script was added, and for you to fix it with a git revert so that the history of your royal screw-up is preserved.
Considering you can't remember when you wrote the script, you decide to use git bisect.
Run and submit the CLI tests from the root of your repo.
If you're interested, the git blame command can be used to see who made the change, not just when it was made.