Skip to content

Files

Latest commit

fa830db · Jan 21, 2024

History

History
23 lines (18 loc) · 745 Bytes

contribution.md

File metadata and controls

23 lines (18 loc) · 745 Bytes

📝 How to Contribute?

Setting up environment

install android studio

Type below command in terminal to clone forked repository in your local machine

git clone https://github.com/vigneshshettyin/Meetly

Add upstream to repository

$ cd <your-forked-project-folder>
$ git remote add upstream https://github.com/vigneshshettyin/Meetly.git
$ git checkout main
$ git fetch upstream
$ git merge upstream/main
$ git push origin main

Creating branch for the new change on feature or bug fix

$ git checkout -b <feature-branch>
$ git add --all
$ git commit -m "<commit message>"

Creating pull request

$ git push origin main