{"id":21916511,"url":"https://github.com/CodeSignal/SurpriseParty","last_synced_at":"2025-10-09T14:30:22.762Z","repository":{"id":261575961,"uuid":"884690035","full_name":"CodeSignal/SurpriseParty","owner":"CodeSignal","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-21T13:13:45.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-22T09:33:15.468Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/CodeSignal.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}},"created_at":"2024-11-07T08:04:31.000Z","updated_at":"2025-02-21T13:13:48.000Z","dependencies_parsed_at":"2024-11-07T10:17:46.333Z","dependency_job_id":"b8b0d88b-104b-439a-8fdb-55cc4f13d6c3","html_url":"https://github.com/CodeSignal/SurpriseParty","commit_stats":null,"previous_names":["codesignal/supriseparty","codesignal/surpriseparty"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CodeSignal/SurpriseParty","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeSignal%2FSurpriseParty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeSignal%2FSurpriseParty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeSignal%2FSurpriseParty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeSignal%2FSurpriseParty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CodeSignal","download_url":"https://codeload.github.com/CodeSignal/SurpriseParty/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeSignal%2FSurpriseParty/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001538,"owners_count":26083119,"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-09T02:00:07.460Z","response_time":59,"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":[],"created_at":"2024-11-28T19:18:15.929Z","updated_at":"2025-10-09T14:30:22.750Z","avatar_url":"https://github.com/CodeSignal.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# SurprisePartyPlanner 🎉\n\nWelcome to the **SurprisePartyPlanner** repository! This project is part of the **CodeSignal** [Git Version Control for Beginners course path](https://github.com/CodeSignal/GitCourse) — a hands-on series of courses designed to teach Git and GitHub collaboration workflows. \n\nIn this repository, we follow Alice and Bob as they prepare for a surprise party, demonstrating key Git concepts we've covered throughout the course. This practical example helps illustrate branching, merging, and version control, giving you a real-world look at collaborative project management with Git.\n\n## Table of Contents\n- Overview\n- Branch Structure\n- Getting Started\n- Exploring the Repository\n\n---\n\n## Overview\n\nThe purpose of this repository is to illustrate collaborative workflows in Git and GitHub, as discussed in our CodeSignal course. Using this example, you'll see how **Alice** and **Bob** work independently on different aspects of a party plan, each on their own branch, before combining their contributions into the main project. \n\nThis repository serves as a learning tool for understanding:\n- Branching strategies\n- Merging processes\n- Managing versions\n\n## Branch Structure\n\nThe repository is organized into three main branches, each representing different stages of the project:\n\n- **Main Branch (`main`)**: Contains the finalized party plan, where both Alice’s and Bob’s completed branches are merged.\n  \n- **Alice’s Branch (`alice_part`)**: Alice is responsible for creating the guest list and planning decorations. Her branch includes:\n    - Task 1: Create guest list\n    - Task 2: Plan decorations\n    - Task 3: Merge the branch with both files into `main`\n  \n- **Bob’s Branch (`bobs_part`)**: Bob focuses on preparing the menu and playlist. His branch includes:\n    - Task 1: Plan menu\n    - Task 2: Create music playlist\n    - Task 3: Update menu to accommodate vegetarian guests\n    - Task 4: Merge the branch with all updates into `main`\n\n## Getting Started\n\nTo explore the repository, clone it and navigate through each branch.\n\n### Cloning the Repository\n\nClone the repository to your local machine using:\n```bash\ngit clone https://github.com/CodeSignal/SupriseParty.git\n```\n\nOnce cloned, you can switch between branches to see the specific contributions made by Alice and Bob.\n\n### Checking Out Branches\n\nTo view Alice’s or Bob’s part of the project, switch to their respective branches:\n\n```bash\ngit checkout alice_part\n```\nor\n```bash\ngit checkout bobs_part\n```\n\nThis will allow you to explore each collaborator’s work and see how their tasks come together for the final plan.\n\n## Exploring the Repository\n\nThis repository includes practical examples of Git operations covered in the CodeSignal course, such as:\n- **Branching**: Each contributor works independently on their own branch.\n- **Merging**: Alice’s and Bob’s branches are merged into the `main` branch to form the complete plan.\n\nAdditionally, you can **explore the commit history** to gain insights into the step-by-step development of each task. Viewing the commits will show how individual tasks were handled, providing a clear picture of the contributions made by Alice and Bob over time. Use the following command to view all commits:\n\n```bash\ngit log\n```\n\nFeel free to explore the branches, view the commit history, and examine how contributions from both collaborators are integrated in the `main` branch.\n\n---\n\nEnjoy exploring the repository, and happy party planning! 🎈\n\n---\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCodeSignal%2FSurpriseParty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FCodeSignal%2FSurpriseParty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCodeSignal%2FSurpriseParty/lists"}