{"id":29537853,"url":"https://github.com/sdoering/obsidian-date-migration","last_synced_at":"2025-12-30T22:07:10.818Z","repository":{"id":303862054,"uuid":"1016950615","full_name":"sdoering/obsidian-date-migration","owner":"sdoering","description":"🗓️ Intelligente Datum-Feld-Migration für Obsidian Vaults - Makefile-driven mit Testing und Rollback","archived":false,"fork":false,"pushed_at":"2025-07-09T19:34:23.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-10T05:00:13.008Z","etag":null,"topics":["automation","bash","data-migration","markdown","obsidian","second-brain","yaml"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sdoering.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-09T19:29:57.000Z","updated_at":"2025-07-09T19:34:26.000Z","dependencies_parsed_at":"2025-07-10T05:03:02.926Z","dependency_job_id":"674df8a5-e514-4e8a-ad0d-f3ff3fe9e7c7","html_url":"https://github.com/sdoering/obsidian-date-migration","commit_stats":null,"previous_names":["sdoering/obsidian-date-migration"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sdoering/obsidian-date-migration","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdoering%2Fobsidian-date-migration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdoering%2Fobsidian-date-migration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdoering%2Fobsidian-date-migration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdoering%2Fobsidian-date-migration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sdoering","download_url":"https://codeload.github.com/sdoering/obsidian-date-migration/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdoering%2Fobsidian-date-migration/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265563654,"owners_count":23788740,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","bash","data-migration","markdown","obsidian","second-brain","yaml"],"created_at":"2025-07-17T04:02:23.399Z","updated_at":"2025-12-30T22:07:10.779Z","avatar_url":"https://github.com/sdoering.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Obsidian Date Migration Tool\n\nEin intelligentes Tool zur Vereinheitlichung von Datum-Feldern in Obsidian Vault YAML Front Matter.\n\n## Problem\n\nObsidian Vaults enthalten oft verschiedene Datum-Feld-Formate:\n- `creation date: 2025-01-26T19:36:00`\n- `lastAnnotatedDate: '2023-03-04'`\n- `created_at: \"1716650237946\"` (Unix timestamp)\n- `modification date: Tuesday 12th September 2023 18:43:02`\n\n## Lösung\n\nVereinheitlichung zu:\n```yaml\ncreated_at: 2025-05-27T22:03:00\nupdated_at: 2025-06-30T23:11:50\n```\n\n## Features\n\n- **Intelligente Fallback-Strategie**: Nutzt Dateisystem-Metadaten wenn YAML-Felder fehlen\n- **Sichere Migration**: Vollständiges Backup \u0026 Rollback\n- **Testing**: Dry-run Modus vor echten Änderungen\n- **Edge-Case Handling**: Behandelt problematische Fälle (z.B. Backup-Wiederherstellung)\n- **Makefile**: Einfache Bedienung über `make` Commands\n\n## Verwendung\n\n```bash\n# Projekt-Setup\nmake setup\n\n# Analyse des aktuellen Zustands\nmake analyze\n\n# Test-Lauf (keine Änderungen)\nmake test\n\n# Echte Migration\nmake migrate\n\n# Rollback falls nötig\nmake rollback\n```\n\n## Struktur\n\n```\nobsidian-date-migration/\n├── Makefile                 # Hauptsteuerung\n├── scripts/\n│   ├── migrate.sh          # Haupt-Migrations-Script\n│   ├── analyze.sh          # Analyse-Tool\n│   ├── sanitize.sh         # Sanitization für GitHub\n│   └── test.sh             # Test-Runner\n├── tests/\n│   ├── test_data/          # Test-Dateien\n│   └── test_suite.sh       # Automatisierte Tests\n├── docs/\n│   └── MIGRATION_LOG.md    # Automatisches Logging\n└── examples/\n    └── sample_files/       # Beispiel-Dateien\n```\n\n## Technische Details\n\n- **Zielformat**: `YYYY-MM-DDTHH:MM:SS` (ISO 8601 ohne Timezone)\n- **Fallback-Strategie**: YAML → Dateisystem birth time → modify time\n- **Backup**: Automatisches Git-Backup vor Migration\n- **Logging**: Vollständige Dokumentation aller Änderungen\n\n## Entwicklung\n\nDieses Tool entstand aus der Notwendigkeit, ein 2nd Brain (Obsidian Vault) mit 2300+ Markdown-Dateien zu bereinigen und zu vereinheitlichen.\n\n## Contributing\n\nPull Requests willkommen! Bitte teste gründlich mit eigenen Daten.\n\n## Lizenz\n\nMIT License - Siehe LICENSE Datei.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdoering%2Fobsidian-date-migration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsdoering%2Fobsidian-date-migration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdoering%2Fobsidian-date-migration/lists"}