Skip to content

Latest commit

 

History

History
64 lines (40 loc) · 782 Bytes

contributing.md

File metadata and controls

64 lines (40 loc) · 782 Bytes

How to contribute to this project?

To contribute you need to follow this contributing guide.

  • Fork the repo
  • clone the forked repo
git clone https://github.com/your-github-username/OpenCommunity
  • navigate to the project directory
cd openCommunity
  • install dependencies using
pnpm i

  • run project using this command
pnpm dev

  • change according your problem
  • Create a new branch
git branch -m branch name

  • add upstream command
git remote add upstream https://github.com/SuggestUs/openCommunity

  • stage all files
git add --all

  • commit chnaged files, make sure to add a good commit messages
git commit -m "your messages"
  • push the code
git push origin [Your-branch-name]