Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.07 KB

CONTRIBUTING.md

File metadata and controls

53 lines (38 loc) · 1.07 KB

Creating a issue

Before contributing, create an issue regarding the changes to be made .

Issue can be regarding fixes or a new feature.

Branch Naming Conventions

type-#issue_id-<description>

Where type can be either feat or fix

For eg. feat-#13-added_apt_packages

Contributing

  1. Fork the repository.
  2. Clone the forked repository.
git clone https://github.com/<your_github_id>/procfetch
  1. Navigate to the project directory.
cd procfetch
  1. Create a new branch following the naming conventions mentioned above
git checkout -b <branch_name>
  1. Make necessary changes and commit those changes
git add .
git commit -m "commit message"
  1. Push changes to Github
git push origin -u <branch_name>
  1. Go to your repository, a Compare and pull request button will appear

    Click on that button and Submit the pull request.

    Make sure you attach Screenshots of the changes made.

    Your Pull Request will be merged after verification


Thank you for your contribution