Created
March 30, 2021 20:23
-
-
Save wayneseymour/c7b1215a64e1675d52e4541f871aaf2c to your computer and use it in GitHub Desktop.
Use spencer's way to debug test failures in ci
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add his remote | |
git remote add spalger [email protected]:spalger/kibana.git | |
# verbosely fetch his remote branch info | |
git fetch spalger -v | |
# bring down the branch he was working on, to your local | |
git branch --track pr/95667 spalger/pr/95667 | |
# checkout that branch | |
git checkout pr/95667 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I wrote this gist in order to not have to bug spencer the next time I wanna debug something in ci.
I got the idea after viewing his commit log, and seeing these interesting commit msgs:
Now, if I get another ci issue on a test, I can trace through how he did it.
Even if he deletes that branch, I have it on my local for historical use.