Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix]: Update README.md #47

Merged
merged 5 commits into from
Feb 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,25 @@ You can refer to the following articles on **_basics of Git and Github and also

<h2 align=center> πŸ“ How to Contribute? </h2>

#### 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>

- 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