{"meta":{"title":"Erstellen von Vorlagen","intro":"Copilot Chat kann Ihnen helfen, Vorlagen zu erstellen, um Ihren Workflow zu optimieren und die Konsistenz in Ihren Projekten sicherzustellen.","product":"GitHub Copilot","breadcrumbs":[{"href":"/de/copilot","title":"GitHub Copilot"},{"href":"/de/copilot/tutorials","title":"Anleitungen"},{"href":"/de/copilot/tutorials/copilot-cookbook","title":"GitHub Copilot Kochbuch"},{"href":"/de/copilot/tutorials/copilot-cookbook/communicate-effectively","title":"Effektives Kommunizieren"},{"href":"/de/copilot/tutorials/copilot-cookbook/communicate-effectively/creating-templates","title":"Erstellen von Vorlagen"}],"documentType":"article"},"body":"# Erstellen von Vorlagen\n\nCopilot Chat kann Ihnen helfen, Vorlagen zu erstellen, um Ihren Workflow zu optimieren und die Konsistenz in Ihren Projekten sicherzustellen.\n\nGitHub Copilot Chat kann Ihnen dabei helfen, Vorlagen für verschiedene Zwecke zu erstellen, z. B. Projektdokumentation, Codeausschnitte oder Problemverfolgung. Mithilfe von Vorlagen kannst du deinen Workflow optimieren und Konsistenz zwischen deinen Projekten sicherstellen.\n\n## Beispielszenario\n\nDu möchstest eine Vorlage für eine Infoprojektdatei erstellen, die Abschnitte für Projektbeschreibung, Installationsanweisungen, Verwendungsbeispiele und Beitragsrichtlinien enthält. Sie können Copilot Chat bitten, eine README-Vorlage auf der Grundlage bewährter Verfahren und Ihrer spezifischen Anforderungen zu erstellen. Anschließend kannst du diese Vorlage als Ausgangspunkt für die gesamte Projektdokumentation verwenden.\n\n## Beispielaufforderung\n\n```text copy\nCreate a README template for a new open-source project that includes sections for project description, installation instructions, usage examples, and contribution guidelines. Make it clear and easy to follow.\n```\n\n## Beispielantwort\n\n> \\[!NOTE] Die folgende Antwort ist ein Beispiel. Da die Copilot Chat-Antworten nicht deterministisch sind, erhältst du möglicherweise eine andere Antwort als die hier beschriebene.\n\nCopilot stellt Ihnen eine strukturierte README-Vorlage zur Verfügung. Sie können die Vorlage Copilot Chat kopieren und an die Anforderungen Ihres Projekts anpassen.\n\n````markdown\n# Project Name\n\n> **Short description:**  \n> A brief summary of what your project does, its main features, and its purpose.\n\n---\n\n## Table of Contents\n\n- [Description](#description)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n- [Contact](#contact)\n\n---\n\n## Description\n\nProvide a detailed explanation of what your project does, why it exists, and any important background information.  \nYou may want to include:\n- Key features\n- Supported platforms or languages\n- Screenshots or diagrams\n\n---\n\n## Installation\n\n1. **Clone the repository**\n   ```sh\n   git clone https://github.com/your-username/your-repo-name.git\n   cd your-repo-name\n   ```\n\n2. **Install dependencies**\n   ```sh\n   # Example for Node.js projects\n   npm install\n\n   # Example for Python projects\n   pip install -r requirements.txt\n   ```\n\n3. **Additional setup**\n   - List any other required steps (e.g., environment variables, configuration files)\n\n---\n\n## Usage\n\nProvide clear usage instructions and code examples.\n\n```sh\n# Example command\nyour-command --option value\n```\n\n```python\n# Example in Python\nimport your_module\n\nresult = your_module.do_something()\nprint(result)\n```\n\n- Explain any CLI options, configuration, or parameters.\n- Link to more detailed documentation if available.\n\n---\n\n## Contributing\n\nContributions are welcome! Please follow these guidelines:\n\n1. **Fork the repository**\n2. **Create a new branch**\n   ```sh\n   git checkout -b feature/your-feature-name\n   ```\n3. **Make your changes**\n4. **Test your changes**\n5. **Commit and push**\n   ```sh\n   git commit -m \"Add feature: your-feature-name\"\n   git push origin feature/your-feature-name\n   ```\n6. **Open a pull request**\n\n**Code of Conduct:**  \nPlease be respectful and follow our [Code of Conduct](CODE_OF_CONDUCT.md).\n\n**Issues & Suggestions:**  \nOpen an issue for bugs, questions, or feature requests.\n\n---\n\n## License\n\nThis project is licensed under the [INSERT LICENSE](link to relevant license information).\n\n---\n\n## Contact\n\n- **Maintainer:** [Your Name](mailto:your@email.com)\n- **Project Link:** https://github.com/your-username/your-repo-name\n\n---\n````\n\n## Weiterführende Lektüre\n\n* [Prompt-Engineering für GitHub Copilot Chat](/de/copilot/concepts/prompting/prompt-engineering)\n* [Bewährte Methoden für die Verwendung von GitHub Copilot](/de/copilot/get-started/best-practices)"}