From fe6a6d0d8316535b5ac232f5d7cc6d227b187b9e Mon Sep 17 00:00:00 2001
From: Fixture <fix@example.com>
Date: Sat, 29 Aug 2026 22:44:57 -0400
Subject: [PATCH 1/3] feat: initial layout

- add schema.sql with SQL comments
- add main.rs skeleton
---
 blob.bin        | Bin 0 -> 11 bytes
 doomed.txt      |   3 +++
 main.rs         |   6 ++++++
 notes.md        |   5 +++++
 renamed_src.txt |   3 +++
 schema.sql      |   7 +++++++
 6 files changed, 24 insertions(+)
 create mode 100644 blob.bin
 create mode 100644 doomed.txt
 create mode 100644 main.rs
 create mode 100644 notes.md
 create mode 100644 renamed_src.txt
 create mode 100644 schema.sql

diff --git a/blob.bin b/blob.bin
new file mode 100644
index 0000000000000000000000000000000000000000..03a10deff6b5193b27ac3131cf8598f7ff834164
GIT binary patch
literal 11
ScmZ?r^m7b~WGFLaWC8#YL;`RC

literal 0
HcmV?d00001

diff --git a/doomed.txt b/doomed.txt
new file mode 100644
index 0000000..cbec1ee
--- /dev/null
+++ b/doomed.txt
@@ -0,0 +1,3 @@
+line a
+line b
+line c
diff --git a/main.rs b/main.rs
new file mode 100644
index 0000000..5d804c0
--- /dev/null
+++ b/main.rs
@@ -0,0 +1,6 @@
+fn main() {
+    println!("one");
+    println!("two");
+    println!("three");
+    println!("four");
+}
diff --git a/notes.md b/notes.md
new file mode 100644
index 0000000..d4d7d60
--- /dev/null
+++ b/notes.md
@@ -0,0 +1,5 @@
+# Notes
+Some intro text.
+---
+A horizontal rule above.
+increment operator: x
diff --git a/renamed_src.txt b/renamed_src.txt
new file mode 100644
index 0000000..1177bda
--- /dev/null
+++ b/renamed_src.txt
@@ -0,0 +1,3 @@
+stable content 1
+stable content 2
+stable content 3
diff --git a/schema.sql b/schema.sql
new file mode 100644
index 0000000..bb42838
--- /dev/null
+++ b/schema.sql
@@ -0,0 +1,7 @@
+-- users table
+-- created 2024
+CREATE TABLE users (
+  id INTEGER PRIMARY KEY,
+  -- legacy column
+  name TEXT
+);
-- 
2.54.0.windows.1


From 0e7632a01b00c70cbc9dafcf1f23c71fa6b10de1 Mon Sep 17 00:00:00 2001
From: Fixture <fix@example.com>
Date: Sat, 29 Aug 2026 22:44:59 -0400
Subject: [PATCH 2/3] fix: drop SQL comments, tweak main, document ++

- remove the -- comments from schema.sql
- change two -> 2 and add five
- notes.md gains a ++ line
---
 main.rs    | 3 ++-
 notes.md   | 1 +
 schema.sql | 3 ---
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/main.rs b/main.rs
index 5d804c0..0658d30 100644
--- a/main.rs
+++ b/main.rs
@@ -1,6 +1,7 @@
 fn main() {
     println!("one");
-    println!("two");
+    println!("2");
     println!("three");
     println!("four");
+    println!("five");
 }
diff --git a/notes.md b/notes.md
index d4d7d60..976bcb5 100644
--- a/notes.md
+++ b/notes.md
@@ -3,3 +3,4 @@ Some intro text.
 ---
 A horizontal rule above.
 increment operator: x
+++ can also start a line
diff --git a/schema.sql b/schema.sql
index bb42838..07010ac 100644
--- a/schema.sql
+++ b/schema.sql
@@ -1,7 +1,4 @@
--- users table
--- created 2024
 CREATE TABLE users (
   id INTEGER PRIMARY KEY,
-  -- legacy column
   name TEXT
 );
-- 
2.54.0.windows.1


From 22396ff169c6be4715fcef4ca9a7178968d19e5d Mon Sep 17 00:00:00 2001
From: Fixture <fix@example.com>
Date: Sat, 29 Aug 2026 22:45:00 -0400
Subject: [PATCH 3/3] chore: rename, delete, binary bump

---
 blob.bin                           | Bin 11 -> 11 bytes
 doomed.txt                         |   3 ---
 renamed_src.txt => renamed_dst.txt |   0
 3 files changed, 3 deletions(-)
 delete mode 100644 doomed.txt
 rename renamed_src.txt => renamed_dst.txt (100%)

diff --git a/blob.bin b/blob.bin
index 03a10deff6b5193b27ac3131cf8598f7ff834164..198c8451e29014c328c04e5e2b03e3dbbfeb2c75 100644
GIT binary patch
literal 11
ScmZ?r^m7b~WGFLYW&r>ZO#*cQ

literal 11
ScmZ?r^m7b~WGFLaWC8#YL;`RC

diff --git a/doomed.txt b/doomed.txt
deleted file mode 100644
index cbec1ee..0000000
--- a/doomed.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-line a
-line b
-line c
diff --git a/renamed_src.txt b/renamed_dst.txt
similarity index 100%
rename from renamed_src.txt
rename to renamed_dst.txt
-- 
2.54.0.windows.1

