{"id":19711423,"url":"https://github.com/willie-conway/git-practice-repository","last_synced_at":"2026-05-08T03:08:20.657Z","repository":{"id":245131427,"uuid":"817337106","full_name":"Willie-Conway/Git-Practice-Repository","owner":"Willie-Conway","description":"🌟 A practice account dedicated to 👨🏿‍💻 mastering 🔶 Git. This repository includes hands-on exercises, tutorials 📚, and projects 🛠️ to enhance Git skills and version control knowledge. 🚀","archived":false,"fork":false,"pushed_at":"2024-11-01T07:55:35.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-10T14:27:49.578Z","etag":null,"topics":["branching","coding","collaboration","commands","commits","development","documentation","exercises","git","github","learning","merging","open-source","practice","repositories","skills","troubleshooting","tutorials","version-control","workflows"],"latest_commit_sha":null,"homepage":"https://github.com/Willie-Conway/Git-Practice-Repository.git","language":"Python","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/Willie-Conway.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}},"created_at":"2024-06-19T13:47:49.000Z","updated_at":"2024-11-01T07:55:39.000Z","dependencies_parsed_at":"2024-06-20T01:24:22.857Z","dependency_job_id":"c7362857-98ec-41d5-8836-996dc69c55d3","html_url":"https://github.com/Willie-Conway/Git-Practice-Repository","commit_stats":null,"previous_names":["willie-conway/my-first-repo","willie-conway/git-practice-repository"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Willie-Conway%2FGit-Practice-Repository","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Willie-Conway%2FGit-Practice-Repository/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Willie-Conway%2FGit-Practice-Repository/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Willie-Conway%2FGit-Practice-Repository/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Willie-Conway","download_url":"https://codeload.github.com/Willie-Conway/Git-Practice-Repository/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241029900,"owners_count":19896983,"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":["branching","coding","collaboration","commands","commits","development","documentation","exercises","git","github","learning","merging","open-source","practice","repositories","skills","troubleshooting","tutorials","version-control","workflows"],"created_at":"2024-11-11T22:11:29.957Z","updated_at":"2026-05-08T03:08:20.651Z","avatar_url":"https://github.com/Willie-Conway.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git Practice Repository 🚀\n\n\u003cimg src=\"https://images.credly.com/size/340x340/images/9a0255eb-a47d-4f3a-9611-243bfe3eb9e4/image.png\" alt=\"Git\" width=\"300\" /\u003e\n\nWelcome to my **🔶Git Practice Repository**! This repository is dedicated to learning and experimenting with **🔶Git** and **version control** systems. Here, I will document my progress, practice commands, and explore various features of Git.\n\n## 📖Table of Contents \n\n- [About](#about)\n- [Setup Instructions](#setup-instructions)\n- [Usage](#usage)\n- [Git Commands Practiced](#git-commands-practiced)\n- [Contributions](#contributions)\n- [License](#license)\n\n## About 📝\n\nThis repository serves as a hands-on practice space to learn the fundamentals of **🔶Git**. By experimenting with commands and workflows, I aim to deepen my understanding of **`version control`**, **`branching`**, **`merging`**, and **`collaboration`**.\n\n## Setup Instructions ⚙️\n\n1. **Clone the Repository:**\n   \n   ```bash\n   git clone https://github.com/YOUR_USERNAME/git-practice-repo.git\n   cd git-practice-repo\n   ```\n2. **Create a Branch (optional)**:\n   \n```bash\ngit checkout -b practice-branch\n```\n3. **Make Changes and Commit**:\n\n- Edit files as needed.\n- Stage your changes:\n  \n```bash\ngit add .\n```\n4. **Commit your changes**:\n   \n```bash\ngit commit -m \"Your commit message here\"\n```\n5. **Push to GitHub**:\n\n```bash\ngit push origin practice-branch\n```\n\n## Usage 🛠️\n\n**To practice using Git commands, follow these steps**:\n\n- Create new branches for different features or experiments.\n- Merge branches to practice conflict resolution.\n- Use tags to mark significant points in your learning journey.\n\n```python\n# detailed_script.py\n\"\"\"\nThis script demonstrates basic Python functionalities:\n- User input\n- Conditional statements\n- Looping\n- Functions\n\"\"\"\n\ndef get_user_input():\n    \"\"\"Function to get user input for their favorite color.\"\"\"\n    # Prompt the user for their favorite color\n    color = input(\"Enter your favorite color: \")\n    return color\n\ndef check_color(color):\n    \"\"\"Function to check if the entered color is in a predefined list.\n    \n    Args:\n        color (str): The color to check.\n\n    Returns:\n        bool: True if the color is in the list, False otherwise.\n    \"\"\"\n    # Predefined list of colors\n    favorite_colors = ['red', 'blue', 'green', 'yellow', 'purple']\n    \n    # Check if the user's color is in the list\n    if color.lower() in favorite_colors:\n        return True\n    else:\n        return False\n\ndef main():\n    \"\"\"Main function to execute the script.\"\"\"\n    # Get user input\n    user_color = get_user_input()\n    \n    # Check if the color is a favorite\n    if check_color(user_color):\n        print(f\"{user_color.capitalize()} is one of my favorite colors too! 🎉\")\n    else:\n        print(f\"{user_color.capitalize()} is nice, but I prefer other colors. 😊\")\n    \n    # Loop to ask the user for more colors\n    while True:\n        more_colors = input(\"Do you want to check another color? (yes/no): \")\n        if more_colors.lower() == 'yes':\n            user_color = get_user_input()\n            if check_color(user_color):\n                print(f\"{user_color.capitalize()} is one of my favorite colors too! 🎉\")\n            else:\n                print(f\"{user_color.capitalize()} is nice, but I prefer other colors. 😊\")\n        elif more_colors.lower() == 'no':\n            print(\"Thank you for playing! Goodbye! 👋\")\n            break\n        else:\n            print(\"Please enter 'yes' or 'no'.\")\n\n# Check if the script is being run directly\nif __name__ == \"__main__\":\n    main()\n\n```\n\n```bash\n# Final steps\ngit add detailed_script.py\ngit commit -m \"Add detailed script with comments for Git practice\"\ngit push origin main\n```\n\n## Git Commands Practiced 📖\n\n`git clone`\n`git add`\n`git commit`\n`git push`\n`git pull`\n`git checkout`\n`git branch`\n`git merge`\n`git status`\n`git log`\n\n## Contributions 🤝\nFeel free to contribute to this repository by sharing tips, commands, or examples of **🔶Git** usage! Open issues for any questions or suggestions.\n\nLicense 📜\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwillie-conway%2Fgit-practice-repository","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwillie-conway%2Fgit-practice-repository","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwillie-conway%2Fgit-practice-repository/lists"}