This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
pull_all_repos.py | |
Clone/pull all GitHub + Gitea repos into a destination folder and | |
generate an Obsidian-friendly repo_index.md showing which repos have | |
uncommitted changes. | |
Requirements: | |
- Python 3.8+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"database": "file_index.db", | |
"roots": [ | |
{ | |
"root_dir": ".", | |
"include_patterns": [ | |
"**/*.php", | |
"**/*.html" | |
], | |
"friendly_name": "Main Project", |