Skip to content

Commit

Permalink
Merge pull request #47 from YASH-YADAV-dynamo/main
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshshettyin authored Feb 10, 2024
2 parents dcd9839 + e69bf36 commit 29a3a3c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ You can refer to the following articles on **_basics of Git and Github and also

<h2 align=center> 📝 How to Contribute? </h2>


- For deatil steps to set the project ,<a href="contribution.md">CLICK HERE</a>
- Take a look at [CODE OF CONDUCT](https://github.com/vigneshshettyin/Meetly/blob/main/.github/CODE_OF_CONDUCT.md)
- Take a look at the Existing Issues or create your own Issues!
- Wait for the Issue to be assigned to you after which you can start working on it.
Expand Down
23 changes: 23 additions & 0 deletions contribution.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<h2 align=center> 📝 How to Contribute? </h2>

#### Setting up environment<br>
install android studio

#### Type below command in terminal to clone forked repository in your local machine<br>
`git clone https://github.com/vigneshshettyin/Meetly`<br>

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

#### Creating branch for the new change on feature or bug fix
`$ git checkout -b <feature-branch>`<br>
`$ git add --all`<br>
`$ git commit -m "<commit message>"`<br>

#### Creating pull request
`$ git push origin main`<br>

0 comments on commit 29a3a3c

Please sign in to comment.