Last active
March 7, 2022 10:58
-
-
Save pixelmattersdev/bfcfdeb00486abc79c58805da033196e to your computer and use it in GitHub Desktop.
Git bisect blog post
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
git bisect badc4c708a3fecc993abbe2469ba05f0adfd4f6adfa is the first bad commit | |
commit c4c708a3fecc993abbe2469ba05f0adfd4f6adfa | |
Author: Gil Mendes | |
Date: Mon Nov 8 16:04:07 2021 +0000 | |
feat: add link to the blog post | |
src/Animation.svelte | 4 ++-- | |
src/App.svelte | 3 ++- | |
2 files changed, 4 insertions(+), 3 deletions(-) |
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
git bisect badBisecting: 0 revisions left to test after this (roughly 0 steps) | |
[c4c708a3fecc993abbe2469ba05f0adfd4f6adfa] feat: add link to the blog post |
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
git bisect bad |
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
git bisect good ddb8e2619f09d58eb9966cf548829ae12ca30351 |
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
Bisecting: 0 revisions left to test after this (roughly 1 step) | |
[db4c51bf5ecc5cddcfaef51c0eb4863f34de1aad] chore: add more information about this project |
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
git bisect reset |
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
git bisect start |
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
git show c4c708a3fecc993abbe2469ba05f0adfd4f6adfacommit c4c708a3fecc993abbe2469ba05f0adfd4f6adfa | |
Author: Gil Mendes <gil00mendes@gmail.com> | |
Date: Mon Nov 8 16:04:07 2021 +0000feat: add link to the blog postdiff --git a/src/Animation.svelte b/src/Animation.svelte | |
index ddf37a9..a02575a 100644 | |
--- a/src/Animation.svelte | |
+++ b/src/Animation.svelte | |
@@ -24,8 +24,8 @@ | |
const b = 128;imageData.data[p + 0] = r; | |
- imageData.data[p + 1] = g; | |
- imageData.data[p + 2] = b; | |
+ imageData.data[p + 0] = g; | |
+ imageData.data[p + 0] = b; | |
imageData.data[p + 3] = 255; | |
}diff --git a/src/App.svelte b/src/App.svelte | |
index dd208b9..b4cac78 100644 | |
--- a/src/App.svelte | |
+++ b/src/App.svelte | |
@@ -6,9 +6,10 @@ | |
<h1>Git Bisect Example</h1><div class="animationWrapper"> | |
- | |
<Animation /> | |
</div> | |
+ | |
+ <a href="https://pixelmatters.com/blog/blog-post-link">Visit this blog article</a> to find more about Git Bisect. | |
</main><style> |
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
commit ddb8e2619f09d58eb9966cf548829ae12ca30351 | |
Author: Gil Mendes | |
Date: Mon Nov 8 16:01:19 2021 +0000 | |
feat: implement animati |
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
commit 664fa2c6ae295471ca3b8bb9bdc2b8bdcb5a6140 (HEAD -> main, origin/main) | |
Author: Gil Mendes | |
Date: Mon Nov 8 16:12:16 2021 +0000 | |
chore: update README filecommit db4c51bf5ecc5cddcfaef51c0eb4863f34de1aad | |
Author: Gil Mendes | |
Date: Mon Nov 8 16:05:14 2021 +0000 | |
chore: add more information about this projectcommit c4c708a3fecc993abbe2469ba05f0adfd4f6adfa | |
Author: Gil Mendes | |
Date: Mon Nov 8 16:04:07 2021 +0000 | |
feat: add link to the blog postcommit ddb8e2619f09d58eb9966cf548829ae12ca30351 | |
Author: Gil Mendes | |
Date: Mon Nov 8 16:01:19 2021 +0000 | |
feat: implement animationcommit 1b6fb01db83f83794891ac566c33880a6cb844b0 | |
Author: Gil Mendes | |
Date: Mon Nov 8 15:52:51 2021 +0000 | |
chore: add lock file and ignore some VIM filescommit 5b8bd355d2be156d27362f2fcd35d3e6ea6ff420 | |
Author: Gil Mendes | |
Date: Mon Nov 8 15:51:52 2021 +0000 | |
chore: initial commit |
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
git clone git@github.com:Pixelmatters/git-bisect-example.git | |
cd git-bisect-example && pnpm i | |
pnpm dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment