{"id":31674966,"url":"https://github.com/sebastianfeldmann/learngit.online.playbook","last_synced_at":"2026-08-05T06:31:12.337Z","repository":{"id":316660379,"uuid":"1064316032","full_name":"sebastianfeldmann/learngit.online.playbook","owner":"sebastianfeldmann","description":"LearnGit.online lessons collection","archived":false,"fork":false,"pushed_at":"2025-10-06T12:11:03.000Z","size":89,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-06T12:29:14.664Z","etag":null,"topics":["git","hacktoberfest","lessons"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sebastianfeldmann.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-25T21:16:41.000Z","updated_at":"2025-10-06T12:11:06.000Z","dependencies_parsed_at":"2025-09-26T00:27:48.305Z","dependency_job_id":"8ffe8951-d391-4b2c-8584-3866d317a083","html_url":"https://github.com/sebastianfeldmann/learngit.online.playbook","commit_stats":null,"previous_names":["sebastianfeldmann/learngit.online.playbook"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sebastianfeldmann/learngit.online.playbook","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sebastianfeldmann%2Flearngit.online.playbook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sebastianfeldmann%2Flearngit.online.playbook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sebastianfeldmann%2Flearngit.online.playbook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sebastianfeldmann%2Flearngit.online.playbook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sebastianfeldmann","download_url":"https://codeload.github.com/sebastianfeldmann/learngit.online.playbook/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sebastianfeldmann%2Flearngit.online.playbook/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278891748,"owners_count":26063856,"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","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["git","hacktoberfest","lessons"],"created_at":"2025-10-08T04:58:05.814Z","updated_at":"2025-10-08T04:58:06.638Z","avatar_url":"https://github.com/sebastianfeldmann.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# LearnGit.online Playbook\n\nThis repository contains the lessons for LearnGit.online, a platform teaching Git beyond the basics. Each lesson is stored in a **YAML file**, which makes it easy to read, edit, and contribute to. Lessons are structured as step-by-step scenarios with detailed explanations. You can see them in action at [learngit.online](http://learngit.online).\n\n⚠️ **Work in Progress**  \nThis repository is still in early development. The lesson format, structure, and content may change at any time.\n\n## Lesson Structure\n\nEach lesson contains metadata and a list of steps. Key fields include:\n\n- `title` – The lesson title.\n- `description` – A short summary of the lesson.\n- `category` – The lesson category (e.g., \"basics\", \"advanced\").\n- `level` – Difficulty level (e.g., \"beginner\", \"intermediate\").\n- `time` – Estimated duration of the lesson.\n- `order` – Order in the sequence of lessons.\n- `steps` – The detailed steps of the lesson.\n\nEach step can include:\n\n- `id` – Step number or identifier.\n- `title` – Step title.\n- `description` – Short explanation of the step.\n- `next` – Optional pointer to the next step.\n- `allowedCommands` – List of allowed commands with expected outputs and hints.\n    - `cmd` – The exact command the user can run.\n    - `hint` – Optional hint to guide the user.\n    - `valid` – Regex to validate input.\n    - `output` – Optional simulated terminal output.\n\n### Example Snippet\n\n```yaml\ntitle: \"Git Commit Workflow\"\ndescription: \"Learn the basics of staging and committing changes in Git.\"\ncategory: \"basics\"\nlevel: \"beginner\"\ntime: \"10 minutes\"\norder: 1\nsteps:\n  - id: 1\n    title: \"Check repository status\"\n    description: \"Start by checking the current status of your repository\"\n    allowedCommands:\n      - cmd: \"git status\"\n        valid: \"^git\\\\s+status$\"\n        output:\n          - text: |\n              On branch main\n              No commits yet\n              Untracked files:\n                README.md\n                .gitignore\n              nothing added to commit but untracked files present (use \"git add\" to track)\n            hint: |\n              This output shows we're on the \u003cb\u003emain\u003c/b\u003e \u003ci\u003ebranch\u003c/i\u003e with no \u003ci\u003ecommits\u003c/i\u003e yet,\n              and have \u003cb\u003e2 untracked files\u003c/b\u003e that need to be added to version control.\n        hint: |\n          Shows the \u003cem\u003eworking tree\u003c/em\u003e status - which files are \u003cem\u003etracked\u003c/em\u003e,\n          \u003cem\u003euntracked\u003c/em\u003e, or \u003cem\u003estaged\u003c/em\u003e for commit\n```\n\n## License\n\nAll lesson content is licensed under [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/).\n\nYou are free to share and adapt these lessons **for non-commercial purposes**, as long as you:\n\n- Give appropriate credit to Sebastian Feldmann\n- Include a link to the license\n- Indicate if changes were made\n- Distribute any derivative work under the same license\n\nFor example, a proper attribution could look like:\n\n\u003e \"Contains LearnGit.online lessons by Sebastian Feldmann (https://learngit.online), licensed under CC BY-NC-SA 4.0.\"\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsebastianfeldmann%2Flearngit.online.playbook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsebastianfeldmann%2Flearngit.online.playbook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsebastianfeldmann%2Flearngit.online.playbook/lists"}