Skip to content

Latest commit

 

History

History
67 lines (50 loc) · 1.51 KB

CONTRIBUTING.md

File metadata and controls

67 lines (50 loc) · 1.51 KB

🌟 Contributing to Ancient Vision

We welcome contributions to Ancient Vision! Follow this guide to get started.


📃 Table of Contents


🧑‍💻 How to Contribute

I'm New to Git and GitHub

Start with this Git and GitHub tutorial.

I Know Git and GitHub

  1. Follow our Standard Workflow.

📦 Commit Message Standards

  • Format: <type>: <description>
    • feat: New feature
    • fix: Bug fix
    • docs: Documentation changes
    • style: Code style changes (e.g., formatting)
    • refactor: Code refactoring
    • test: Adding or fixing tests
    • chore: Miscellaneous tasks

Example:

feat: add support for Egyptian art styles

Standard Workflow

  1. Fork and Clone the Repository:
    git clone https://github.com/<your-username>/Ancient-Vision.git
  2. Create a New Branch:
    git checkout -b feature/new-feature
  3. Make Changes and Commit:
    git add .
    git commit -m "feat: describe your feature"
  4. Push to Your Fork:
    git push origin feature/new-feature
  5. Create a Pull Request on GitHub.

Thank you for contributing! 🙌