From cc165a18786b3d19d1e065d3ca71d0299fb671a6 Mon Sep 17 00:00:00 2001 From: Jacob Stopak <49353917+initialcommit-io@users.noreply.github.com> Date: Sun, 6 Apr 2025 11:01:56 -0600 Subject: [PATCH 1/3] Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index dca8fa0..1e3cffa 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,17 @@ [![Contributors](https://img.shields.io/github/contributors/initialcommit-com/git-sim)](https://github.com/initialcommit-com/git-sim/graphs/contributors) [![Share](https://img.shields.io/twitter/url?label=Share&url=https%3A%2F%2Ftwitter.com%2Finitcommit)](https://twitter.com/intent/tweet?text=Check%20out%20%23gitsim%20%2D%20a%20tool%20to%20visualize%20%23Git%20operations%20in%20your%20local%20repos%20with%20a%20single%20terminal%20command,%20by%20%40initcommit!%20https%3A%2F%2Fgithub%2Ecom%2Finitialcommit%2Dcom%2Fgit%2Dsim) +--- +🚨 New! [Check out Devlands](https://devlands.com): the next generation of git-sim and ***EVEN MORE visual way to learn and use Git***. + +🌱 [Devlands](https://devlands.com) transforms your Git repository into an immersive, visually enchanting world called a Devland, so you can literally walk through your codebase. This lets you explore your code from a visual perspective, to learn and use Git faster and more easily than ever before. + +🧠 If you like git-sim, you'll love this new hands-on approach to mastering Git commands and concepts! + +➡️ [Explore Devlands](https://devlands.com) + +--- + Visually simulate Git operations in your own repos with a single terminal command. This generates an image (default) or video visualization depicting the Git command's behavior. From 5e85f30004511da4b3bc545796534c251c5cb6dc Mon Sep 17 00:00:00 2001 From: Jacob Stopak <49353917+initialcommit-io@users.noreply.github.com> Date: Thu, 17 Jul 2025 00:07:47 -0600 Subject: [PATCH 2/3] Update README.md --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1e3cffa..37d8ee1 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,9 @@ [![Share](https://img.shields.io/twitter/url?label=Share&url=https%3A%2F%2Ftwitter.com%2Finitcommit)](https://twitter.com/intent/tweet?text=Check%20out%20%23gitsim%20%2D%20a%20tool%20to%20visualize%20%23Git%20operations%20in%20your%20local%20repos%20with%20a%20single%20terminal%20command,%20by%20%40initcommit!%20https%3A%2F%2Fgithub%2Ecom%2Finitialcommit%2Dcom%2Fgit%2Dsim) --- -🚨 New! [Check out Devlands](https://devlands.com): the next generation of git-sim and ***EVEN MORE visual way to learn and use Git***. +🚨 I'm working on a new project called [Devlands](https://devlands.com) that I consider to be the next generation of git-sim and an even more intuitive way to learn and use Git. -🌱 [Devlands](https://devlands.com) transforms your Git repository into an immersive, visually enchanting world called a Devland, so you can literally walk through your codebase. This lets you explore your code from a visual perspective, to learn and use Git faster and more easily than ever before. - -🧠 If you like git-sim, you'll love this new hands-on approach to mastering Git commands and concepts! - -➡️ [Explore Devlands](https://devlands.com) +🌱 It enables you to visualize your entire Git repo, literally walk through your codebase, simulate + run Git commands, do a character-guided Git tutorial, and experience your codebase from a fresh perspective. Consider checking it out! --- From d2f1450d3be2de4fb3bc76bd874b1ea37bc0e819 Mon Sep 17 00:00:00 2001 From: John Liu Date: Thu, 31 Jul 2025 21:09:00 -0700 Subject: [PATCH 3/3] Fix the incorrect pip install -e ... command in CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e808655..310a78c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -51,7 +51,7 @@ $ pip uninstall git-sim ```console $ cd path/to/git-sim -$ python -m pip install -e .[dev] +$ python -m pip install -e '.[dev]' ``` > Explanation: `python -m pip` uses the `pip` module of the currently active python interpreter.