Skip to content

Instantly share code, notes, and snippets.

@pixelmattersdev
Created February 23, 2022 12:46
Show Gist options
  • Save pixelmattersdev/6d260f4090047a3ca228db74a1c6d9fd to your computer and use it in GitHub Desktop.
Save pixelmattersdev/6d260f4090047a3ca228db74a1c6d9fd to your computer and use it in GitHub Desktop.
Git bisect blog post
git show c4c708a3fecc993abbe2469ba05f0adfd4f6adfa
commit c4c708a3fecc993abbe2469ba05f0adfd4f6adfa
Author: Gil Mendes <gil00mendes@gmail.com>
Date: Mon Nov 8 16:04:07 2021 +0000
feat: add link to the blog post
diff --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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment