Skip to content

Commit e9bea71

Browse files
committed
release: version 1.7.0
1 parent d15e7a0 commit e9bea71

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
---
1717

1818
## ✨ What is Gittxt?
19-
![](./docs/run_gittxt.gif)
19+
![](./docs/gittxt-demo.gif)
2020

2121
**Gittxt** is a modular and configurable CLI tool that converts Git repositories into clean, AI-ready textual datasets. It is built for developers, researchers, and ML engineers who need structured, filtered, and summarized content from codebases and technical documentation.
2222

@@ -47,22 +47,21 @@ It supports both local folders and GitHub URLs with branch/subdir targeting.
4747

4848
## 🏗️ Installation
4949

50+
### 🐍 Using pip (stable)
51+
52+
```bash
53+
pip install gittxt
54+
```
55+
5056
### 📦 Using Poetry
5157

5258
```bash
5359
git clone https://github.com/sandy-sp/gittxt.git
5460
cd gittxt
5561
poetry install
56-
# Optional setup
62+
# Optional Gittxt setup
5763
poetry run gittxt install
5864
```
59-
60-
### 🐍 Using pip (stable)
61-
62-
```bash
63-
pip install gittxt
64-
```
65-
6665
---
6766

6867
## ⚙️ Quickstart Example
@@ -144,7 +143,7 @@ See [Formats Guide](docs/FORMATS.md)
144143
Run the interactive installer to configure Gittxt preferences:
145144

146145
```bash
147-
gittxt install
146+
gittxt config install
148147
```
149148

150149
This command lets you:

docs/SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
## Supported Versions
44

5-
As Gittxt is currently in **v1.6.0**, we aim to provide security updates for the latest release only.
5+
As Gittxt is currently in **v1.7.0**, we aim to provide security updates for the latest release only.
66

77
| Version | Supported |
88
|---------|--------------------|
9-
| 1.6.0 | ✅ Actively supported |
9+
| 1.7.0 | ✅ Actively supported |
1010

1111
---
1212
# 🔐 Gittxt Security Practices

docs/gittxt-demo.gif

91.3 KB
Loading

docs/run_gittxt.gif

-72.8 KB
Binary file not shown.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[project]
66
name = "gittxt"
7-
version = "1.6.0"
7+
version = "1.7.0"
88
description = "Gittxt: Get text from Git repositories in AI-ready formats"
99
readme = "README.md"
1010
license = { text = "MIT" }

src/gittxt/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
from gittxt.core.config import ConfigManager
44
from gittxt.core.constants import TEXT_DIR, JSON_DIR, MD_DIR, ZIP_DIR, TEMP_DIR
55

6-
__version__ = "1.6.0"
6+
__version__ = "1.7.0"
77
__author__ = "Sandeep Paidipati"
88
__description__ = "Gittxt: Get text from Git repositories in AI-ready formats"
99

1010
logger = Logger.get_logger(__name__)
1111
config = ConfigManager.load_config()
1212

1313
BASE_DIR = Path(__file__).parent.resolve()
14-
LOG_DIR = (BASE_DIR / "../gittxt-logs").resolve()
14+
LOG_DIR = Logger.LOG_FILE.parent.resolve()
1515
OUTPUT_DIR = Path(config.get("output_dir")).resolve()
1616

1717
OUTPUT_TEXT_DIR = OUTPUT_DIR / TEXT_DIR

0 commit comments

Comments
 (0)