Comment on page
GitHub Recipies
Just run into a bug? Capture it and open an issue that includes a video replay with one command.
$ gh issue create -w -t "Title" -b "`dashcam --md`"
Need more context than just a video? This single command will create a GitHub issue with a video replay and the mac system logs.
gh issue create -w -t "Title" -b "`cat /var/log/system.log | dashcam --md`"
We recommend forking this command and replacing the system logs with your application logs.
Handy for demoing your newest feature to your team. You probably did some acceptance testing right before you're ready to open a pull, the following command will let you attach your local testing to your pull request.
$ gh pr create -w -t "Title" -b "`dashcam --md`"
Last modified 2mo ago