-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from YASH-YADAV-dynamo/main
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |