Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.06 KB

CONTRIBUTING.md

File metadata and controls

36 lines (28 loc) · 1.06 KB

Intro

Hi, thank you for your interest in wanting to contribute. This shows you're an idle nerd.

If none of that works for you, here's how you can contribute

1. Fork the repo

  • Visit the repository on GitHub.
  • Click the Fork button in the top-right corner to create your copy of the repo.

2. Clone Your Fork

  • Clone the forked repository to your local machine:
    git clone /~https://github.com/your-username/zfetch.git
    cd zfetch```
    

4. Checkout a new branch

  • git checkout -b feature/your-feature-name

5. Make your changes

  • Add features, fix bugs or improve documentation.
  • Write clean and well documented code.
  • Use meaningful commit messages.

6. Test your changes

  • Write tests for any new functionality.
  • Ensure current functionality does not break existing features.

7. Commit and push

  • Use meaningful commit messages.
  • Preferrably use git add -p
  • Push to your fork.

8. submit a PR

  • Ensure your PR clearly describes any changes made.
  • Reference any related issues if applicable.