{"id":29768771,"url":"https://github.com/koenigseder/badm","last_synced_at":"2026-03-03T03:36:20.963Z","repository":{"id":290039545,"uuid":"968633262","full_name":"Koenigseder/badm","owner":"Koenigseder","description":"BADM - Born Again Dotfile Manager","archived":false,"fork":false,"pushed_at":"2025-11-22T08:42:39.000Z","size":61,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-22T10:29:57.225Z","etag":null,"topics":["dotfiles","golang","linux","stateful"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Koenigseder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-18T12:46:08.000Z","updated_at":"2025-11-22T08:42:34.000Z","dependencies_parsed_at":"2025-04-26T14:22:21.216Z","dependency_job_id":"8b0c9fc3-912c-43fd-ab16-f07d6aa11ac5","html_url":"https://github.com/Koenigseder/badm","commit_stats":null,"previous_names":["koenigseder/badm"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/Koenigseder/badm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Koenigseder%2Fbadm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Koenigseder%2Fbadm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Koenigseder%2Fbadm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Koenigseder%2Fbadm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Koenigseder","download_url":"https://codeload.github.com/Koenigseder/badm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Koenigseder%2Fbadm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30031194,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T03:27:35.548Z","status":"ssl_error","status_checked_at":"2026-03-03T03:27:09.213Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["dotfiles","golang","linux","stateful"],"created_at":"2025-07-27T03:19:46.103Z","updated_at":"2026-03-03T03:36:20.950Z","avatar_url":"https://github.com/Koenigseder.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BADM - Born Again Dotfile Manager\n\nBADM is a new (yes, again a new one) Dotfile manager. It uses Git as its backbone.\n\nThis Dotfile manager is **ready to use**, but some features are not implemented yet. Have a\nlook at [Planned features / Known issues](#planned-features--known-issues) to see what is planned to be added.\n\n## Setup\n\nIf it's your first time you are using this tool, you might want to follow these setup steps:\n\n### Create a fresh Dotfiles repository\n\nIn case you do not have a repository to manage your Dotfiles (or you want to start over) it is pretty straight forward\nto get going:\n\n1. Create new Dotfiles repository\n    1. Create a remote repository (e.g. on GitHub, GitLab, ...). Make sure you are able to push and pull to that\n       repository.\n    2. `badm new \u003cREMOTE_REPO_CLONE_URL\u003e`\n2. Start managing your Dotfiles\n    1. `badm add \u003cPATH_TO_FILE\u003e \u003cPATH_TO_FILE2\u003e` \u0026rarr; Your Dotfiles get automatically pushed to your remote repository\n    2. `badm rm \u003cPATH_TO:FILE\u003e \u003cPATH_TO_FILE2\u003e` \u0026rarr; Your files get removed from the Dotfiles repository and restored\n       to its original location. **No files get lost!**\n    3. `badm save` \u0026rarr; Write any changes to the local Dotfiles repository to the remote one. Needed after each change\n       to local Dotfiles.\n\n### Get an existing BADM repository\n\n`badm get \u003cREMOTE_REPO_CLONE_URL\u003e` - It's that easy.\n\n## Commands\n\n| Command      | Action                                                                                                                                                                                                                                  |\n|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `add`        | Add a Dotfile (or multiple) to your remote Dotfile repository. It gets replaced with a symlink. Choose the `--override` flag to override already existing files on your system.                                                         |\n| `rm`         | Remove a Dotfile (or multiple) from your remote Dotfile repository. The symlink gets replaced with the original file.                                                                                                                   |\n| `save`       | Write any changes to the local Dotfiles repository to the remote one. Needed after each change to local Dotfiles.                                                                                                                       |\n| `fetch`      | Manually fetch the current remote repository stage and persist remote changes onto the local system. Choose the `--override` flag to override already existing files on your system.                                                    |\n| `new`        | Initialize a fresh local BADM repository, where new Dotfiles can be added afterwards.                                                                                                                                                   |\n| `get`        | Pull an already existing BADM remote repository and persist everything on the system.                                                                                                                                                   |\n| `reset`      | Reset all changes made by BADM. It replaces populated symlinks with the original Dotfiles. Choose this command if you do not want to use BADM anymore. Choose the `--dryRun` flag to see what would happen when executing this command. |\n| `update`     | Update BADM to the newest version in-place.                                                                                                                                                                                             |\n| `help`       | Print helpful information.                                                                                                                                                                                                              |\n| `version`    | Check your current version.                                                                                                                                                                                                             |\n| `completion` | Generate the autocompletion script for the specified shell.                                                                                                                                                                             |\n\n## Planned features / Known issues\n\n- Execute custom scripts on wish (e.g. pacman, yay, ...)\n- Actual configuration features\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoenigseder%2Fbadm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoenigseder%2Fbadm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoenigseder%2Fbadm/lists"}