{"id":19643040,"url":"https://github.com/microsoftdocs/mslearn-tailspin-spacegame-web","last_synced_at":"2025-05-12T15:33:01.631Z","repository":{"id":37313179,"uuid":"177216275","full_name":"MicrosoftDocs/mslearn-tailspin-spacegame-web","owner":"MicrosoftDocs","description":"Code used in Microsoft Learn modules to support Azure DevOps","archived":false,"fork":false,"pushed_at":"2025-05-09T19:07:02.000Z","size":924,"stargazers_count":185,"open_issues_count":812,"forks_count":27508,"subscribers_count":16,"default_branch":"main","last_synced_at":"2025-05-09T20:23:36.424Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://aka.ms/devops-build","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc-by-4.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MicrosoftDocs.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-03-22T22:20:37.000Z","updated_at":"2025-05-09T19:07:19.000Z","dependencies_parsed_at":"2022-07-11T14:19:11.249Z","dependency_job_id":"32e1cd9b-0f42-4b90-827a-fdac958ab95e","html_url":"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web","commit_stats":{"total_commits":44,"total_committers":10,"mean_commits":4.4,"dds":0.5454545454545454,"last_synced_commit":"ee7a2fab9821ccbb90f10d05895301b70f839813"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MicrosoftDocs%2Fmslearn-tailspin-spacegame-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MicrosoftDocs%2Fmslearn-tailspin-spacegame-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MicrosoftDocs%2Fmslearn-tailspin-spacegame-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MicrosoftDocs%2Fmslearn-tailspin-spacegame-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MicrosoftDocs","download_url":"https://codeload.github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253765924,"owners_count":21960819,"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":[],"created_at":"2024-11-11T14:18:30.247Z","updated_at":"2025-05-12T15:33:01.566Z","avatar_url":"https://github.com/MicrosoftDocs.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\r\n# Contributing\r\n\r\nThis project welcomes contributions and suggestions.  Most contributions require you to agree to a\r\nContributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us\r\nthe rights to use your contribution. For details, visit https://cla.microsoft.com.\r\n\r\nWhen you submit a pull request, a CLA-bot will automatically determine whether you need to provide\r\na CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions\r\nprovided by the bot. You will only need to do this once across all repos using our CLA.\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).\r\nFor more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or\r\ncontact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\r\n\r\n## For maintainers: Updating feature branches\r\n\r\nThis repository uses feature branches to associate code with specific modules on Microsoft Learn. Any changes you make to the default branch will likely need to be propagated to each feature branch in this repo. A common example is when we need to update Node packages in `package.json`.\r\n\r\nHere's one way to update the remote feature branches when you make a change to the default branch. Note that this process deletes all local branches except for `main`.\r\n\r\n```bash\r\n# Synchronize with the remote main branch\r\ngit checkout main\r\ngit pull origin main\r\n# Delete all local branches except for main\r\ngit branch | grep -ve \"main\" | xargs git branch -D\r\n# List all remote branches except for main\r\nbranches=$(git branch -r 2\u003e /dev/null | grep -ve \"main\" | cut -d \"/\" -f 2)\r\n# Synchronize each branch with main and push the result\r\nwhile IFS= read -r branch; do\r\n    # Fetch and switch to feature branch\r\n    git fetch origin $branch\r\n    git checkout $branch\r\n    # Ensure local environment is free of extra files\r\n    git clean -xdf\r\n    # Merge down main\r\n    git merge --no-ff main\r\n    # Break out if merge failed\r\n    if [ $? -ne 0 ]; then\r\n        break\r\n    fi\r\n    # Push update\r\n    git push origin $branch\r\ndone \u003c\u003c\u003c \"$branches\"\r\n# Switch back to main\r\ngit checkout main\r\n```\r\n\r\n# Legal Notices\r\n\r\nMicrosoft and any contributors grant you a license to the Microsoft documentation and other content\r\nin this repository under the [Creative Commons Attribution 4.0 International Public License](https://creativecommons.org/licenses/by/4.0/legalcode),\r\nsee the [LICENSE](LICENSE) file, and grant you a license to any code in the repository under the [MIT License](https://opensource.org/licenses/MIT), see the\r\n[LICENSE-CODE](LICENSE-CODE) file.\r\n\r\nMicrosoft, Windows, Microsoft Azure and/or other Microsoft products and services referenced in the documentation\r\nmay be either trademarks or registered trademarks of Microsoft in the United States and/or other countries.\r\nThe licenses for this project do not grant you rights to use any Microsoft names, logos, or trademarks.\r\nMicrosoft's general trademark guidelines can be found at http://go.microsoft.com/fwlink/?LinkID=254653.\r\n\r\nPrivacy information can be found at https://privacy.microsoft.com/en-us/\r\n\r\nMicrosoft and any contributors reserve all other rights, whether under their respective copyrights, patents,\r\nor trademarks, whether by implication, estoppel or otherwise.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicrosoftdocs%2Fmslearn-tailspin-spacegame-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmicrosoftdocs%2Fmslearn-tailspin-spacegame-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicrosoftdocs%2Fmslearn-tailspin-spacegame-web/lists"}