mirror of
https://github.com/kirill-markin/repo-to-text.git
synced 2025-12-06 03:22:23 -08:00
ignore gitignore files content
This commit is contained in:
parent
752ca966c4
commit
5c1c7d98e9
4 changed files with 47 additions and 6 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -160,3 +160,10 @@ cython_debug/
|
|||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
#.idea/
|
||||
|
||||
|
||||
# Ignore egg-info directory
|
||||
repo_to_text.egg-info/
|
||||
|
||||
# Ignore generated repo_structure.txt file
|
||||
repo_structure.txt
|
||||
|
|
|
|||
|
|
@ -1,12 +1,37 @@
|
|||
import os
|
||||
import subprocess
|
||||
import pathspec
|
||||
|
||||
def get_tree_structure(path='.') -> str:
|
||||
def get_tree_structure(path='.', gitignore_spec=None) -> str:
|
||||
# Run the tree command and get its output
|
||||
result = subprocess.run(['tree', path], stdout=subprocess.PIPE)
|
||||
return result.stdout.decode('utf-8')
|
||||
tree_output = result.stdout.decode('utf-8')
|
||||
|
||||
if not gitignore_spec:
|
||||
return tree_output
|
||||
|
||||
# Filter the tree output to exclude files in .gitignore (excluding .gitignore itself)
|
||||
filtered_lines = []
|
||||
for line in tree_output.splitlines():
|
||||
parts = line.split()
|
||||
if not any(gitignore_spec.match_file(os.path.join(path, part)) for part in parts if part != '.gitignore'):
|
||||
filtered_lines.append(line)
|
||||
return '\n'.join(filtered_lines)
|
||||
|
||||
def load_gitignore(path='.'):
|
||||
gitignore_path = os.path.join(path, '.gitignore')
|
||||
if os.path.exists(gitignore_path):
|
||||
with open(gitignore_path, 'r') as f:
|
||||
return pathspec.PathSpec.from_lines('gitwildmatch', f)
|
||||
return None
|
||||
|
||||
def is_ignored_file(file_path: str) -> bool:
|
||||
# Check if the file is part of .git or should be ignored according to .gitignore rules
|
||||
return '.git' in file_path.split(os.sep) or file_path.endswith('.gitignore')
|
||||
|
||||
def save_repo_to_text(path='.') -> None:
|
||||
tree_structure: str = get_tree_structure(path)
|
||||
gitignore_spec = load_gitignore(path)
|
||||
tree_structure: str = get_tree_structure(path, gitignore_spec)
|
||||
with open('repo_structure.txt', 'w') as file:
|
||||
file.write(tree_structure + '\n')
|
||||
|
||||
|
|
@ -14,6 +39,11 @@ def save_repo_to_text(path='.') -> None:
|
|||
for filename in files:
|
||||
file_path: str = os.path.join(root, filename)
|
||||
relative_path: str = os.path.relpath(file_path, path)
|
||||
|
||||
# Check if the file should be ignored
|
||||
if is_ignored_file(file_path) or (gitignore_spec and gitignore_spec.match_file(file_path)):
|
||||
continue
|
||||
|
||||
file.write(f'\n{relative_path}\n')
|
||||
file.write('```\n')
|
||||
try:
|
||||
|
|
@ -27,4 +57,4 @@ def main() -> None:
|
|||
save_repo_to_text()
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
main()
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
setuptools==70.0.0
|
||||
pathspec==0.12.1
|
||||
|
|
|
|||
7
setup.py
7
setup.py
|
|
@ -1,13 +1,16 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
with open('requirements.txt') as f:
|
||||
required = f.read().splitlines()
|
||||
|
||||
setup(
|
||||
name='repo-to-text',
|
||||
version='0.1',
|
||||
packages=find_packages(),
|
||||
install_requires=[],
|
||||
install_requires=required,
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'repo-to-text=repo_to_text.main:main',
|
||||
],
|
||||
},
|
||||
)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue