Skip to content

Commit 5f49909

Browse files
authored
Update README.md
1 parent a7a6bf2 commit 5f49909

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,21 @@
1515
3. Write the lines of code that achieve your steps.
1616
4. After made your commits, read your git log history, this should represent your building process.
1717

18+
- You anticipate the flow instead of being reactive.
19+
- You modularize the path instead of creating one big messy effort.
20+
- You value small, meaningful steps that build on each other.
21+
- You are conscious of transitions between steps ("Ok, now let's move to the next thing...").
22+
23+
# 🛤️ A Simple Flow for Commit Driven Development (if you want to practice)
24+
25+
1. Write the commit plan: Before coding, write down: commit titles, one per meaningful change. Example: "Add schema for proxy agents" / "Add changeset validations" / "Implement create_proxy_agent function".
26+
2. Code for one commit at a time: Only focus on what the commit says. Don't jump ahead.
27+
3. Commit often: As soon as you complete the planned change, commit it with the pre-written message.
28+
4. Adjust if needed: If something unexpected happens, adjust your plan. It's not rigid.
29+
5. Review the history: After feature is done, review you
30+
31+
> Commits are mental checkpoints for any creative or technical flow
32+
1833
# ❤️ Values
1934

2035
- Order and clarity before commit your code.

0 commit comments

Comments
 (0)