### Commit Changes with Emoji Source: https://github.com/ai-boost/awesome-a2a/blob/main/CONTRIBUTING.md Commit your changes using the specified format, including an emoji to categorize the commit type. This example adds a new resource. ```bash git commit -am '✨ Add: Resource Title to [Section Name]' ``` -------------------------------- ### Configure Git Commit Template Source: https://github.com/ai-boost/awesome-a2a/blob/main/CONTRIBUTING.md Optional: Set up a commit message template to assist with formatting and emoji references when committing changes. ```bash git config commit.template .gitmessage ``` -------------------------------- ### Create a New Branch Source: https://github.com/ai-boost/awesome-a2a/blob/main/CONTRIBUTING.md Create a new branch for your contributions. Use a descriptive name that reflects the changes you are making. ```bash git checkout -b add-my-awesome-resource ``` -------------------------------- ### Clone Your Forked Repository Source: https://github.com/ai-boost/awesome-a2a/blob/main/CONTRIBUTING.md Clone the repository after forking it to your GitHub account. Replace YOUR_FORK_USERNAME with your actual GitHub username. ```bash git clone https://github.com/YOUR_FORK_USERNAME/awesome-a2a.git ``` -------------------------------- ### Markdown List Item Format Source: https://github.com/ai-boost/awesome-a2a/blob/main/CONTRIBUTING.md Use this format for adding new resources to the list. Choose an appropriate emoji and ensure the link and description are clear and accurate. ```markdown * 🔗/📄/⚙️/etc. [Resource Title](link-to-resource) - A brief, informative description (usually one sentence). Keep it objective. ``` -------------------------------- ### Push Changes to Your Fork Source: https://github.com/ai-boost/awesome-a2a/blob/main/CONTRIBUTING.md Push your committed changes to your forked repository on GitHub. Ensure you are pushing to the correct branch. ```bash git push origin add-my-awesome-resource ``` -------------------------------- ### Standardized Commit Message Format Source: https://github.com/ai-boost/awesome-a2a/blob/main/CONTRIBUTING.md Follow this format for commit messages to maintain a clean and readable project history. It includes an emoji, action, and object. ```git ✨ Add new A2A implementation in Rust ``` ```git 🐛 Fix broken link to official documentation ``` ```git 📝 Update README with new community tool ``` ```git 🌐 Update multilingual documentation links ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.