Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.56 KB

CONTRIBUTING.md

File metadata and controls

36 lines (28 loc) · 1.56 KB

Contributing Guidelines

Thank you for your interest in contributing to the tech-newsletters repository! We are looking for additional newsletters to add to our expanding list.

Categories for Tech newsletters

Here are the following categories to contribute to:

  • GENERAL
  • JAVASCRIPT
  • REACT
  • ANGULAR
  • VUE
  • DevOps
  • CLOUD COMPUTING
  • TECH STARTUPS
  • UI/UX

How to contribute

  1. Check the README to see if your suggestion exists or not.
  2. Fork the repository. Here are the GitHub instructions for forking a repository.
  3. In the command line, clone the repository by typing git clone https://github.com/YOUR-GITHUB-USERNAME/tech-newsletters.git
  4. Then type cd tech-newsletters to go into the project's directory.
  5. Create a branch and switch to that new branch by using the following command: git checkout -b new-branch-name
  6. Update the README.md with your newsletter suggestion(s).
    • Append the title and link to the newsletter, to the list in the appropriate category
  7. In the command line, stage your changes by using the git add . command.
  8. Commit your changes by using the git commit -m "commit message" command.
  9. Push up your changes to the remote branch on GitHub by using the git push -u origin branch_name command.
  10. Open a PR directed to our main branch.
  11. The maintainers will review your PR and either request changes or approve it.

Beginner Friendly Resources for using Git and GitHub