From 5ab1d9d9cabd8776ef2e4ddb2132dd3a9b44d13e Mon Sep 17 00:00:00 2001 From: Vitalii Stepanenko Date: Thu, 21 Aug 2025 01:42:40 +0200 Subject: [PATCH 1/3] Fix README issues detected by Gito code reviewer --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6bc4486..686679c 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ cd rendergit pip install -e . ``` -Now you can just `rendergit` any GitHub url e.g.: +Now you can just `rendergit` any GitHub URL e.g.: ```bash rendergit https://github.com/karpathy/nanoGPT @@ -29,7 +29,7 @@ Once open, you can toggle between two views: - **👤 Human View**: Browse with syntax highlighting, sidebar navigation, visual goodies - **🤖 LLM View**: Copy the entire codebase as CXML text to paste into Claude, ChatGPT, etc. -There's a few other smaller options, see the code. +There are a few other smaller options; see the code. ## Features From 8618d1cdcebc540be56c8758dad79dcae7808e1c Mon Sep 17 00:00:00 2001 From: Vitalii Stepanenko Date: Thu, 21 Aug 2025 01:43:42 +0200 Subject: [PATCH 2/3] Remove unused variable --- repo_to_single_page.py | 1 - 1 file changed, 1 deletion(-) diff --git a/repo_to_single_page.py b/repo_to_single_page.py index b5d966b..ed4eb6c 100644 --- a/repo_to_single_page.py +++ b/repo_to_single_page.py @@ -149,7 +149,6 @@ def collect_files(repo_root: pathlib.Path, max_bytes: int) -> List[FileInfo]: def generate_tree_fallback(root: pathlib.Path) -> str: """Minimal tree-like output if `tree` command is missing.""" lines: List[str] = [] - prefix_stack: List[str] = [] def walk(dir_path: pathlib.Path, prefix: str = ""): entries = [e for e in dir_path.iterdir() if e.name != ".git"] From d7656945c3c7637aae35119e7dc0102d914d3f6f Mon Sep 17 00:00:00 2001 From: Vitalii Stepanenko Date: Thu, 21 Aug 2025 01:54:02 +0200 Subject: [PATCH 3/3] Fix Readme issues detected by Gito code reviewer --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 686679c..cae0470 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ cd rendergit pip install -e . ``` -Now you can just `rendergit` any GitHub URL e.g.: +Now you can just `rendergit` any GitHub URL, e.g.: ```bash rendergit https://github.com/karpathy/nanoGPT