This repository serves as a storage for images used in various projects. Each project has its own corresponding branch containing the images specific to that project.
- main: contains the base files
- global-icons-png contains global png icon files
- global-icons-svg contains global svg icon files
If you are working on a specific project and need access to its associated images, switch to the corresponding branch to access them.
Example:
To access images for example-project:
git checkout example-projectIf you have images to contribute, please follow these steps:
- Fork the repository.
- Create a new branch for your images:
git checkout -b your-project-images. - Add your images to the branch:
git add your-images. - Commit your changes:
git commit -m "Add images for Your Project". - Push to your fork:
git push origin your-project-images. - Create a pull request to the main repository.