Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1019 Bytes

File metadata and controls

34 lines (27 loc) · 1019 Bytes

Intro

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

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.