Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.37 KB

contribution-guide.md

File metadata and controls

41 lines (32 loc) · 1.37 KB

Contributing to Techspace-web

Go through the issue tracker. Take up any topic of interest and discuss your plan to work on that idea. Develop a basic prototype. Make a pull request.

Submitting a bug report/feature request

Search the issue tracker to ensure that there is no open issue addressing the bug. If that is the case, open a new issue. Make sure to include a clear title, description, and as much relevant information as possible. Add the feature label if you have a new feature to add in your mind.

Submitting a pull request

For beginners:

  1. Install git.
  2. Fork the project to your account.
  3. Clone your project fork to your computer.
git clone https://github.com/techspaceusict/techspace-web/
  1. Add the original project repo as upstream repository in your forked project.
git remote add upstream https://github.com/techspaceusict/techspace-web/new/master
  1. Create a new branch from master.
git checkout -b myfixes
  1. Work on the project and make some commits to the project.
git commit -a -m "My fixes"
  1. Push this branch to your GitHub project.
  2. Open a Pull Request on GitHub.
  3. The pull request is merged or closed after approval.

Take a look at :