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

Update CONTRIBUTING.md #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
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
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ git clone https://github.com/GDSC-IETDAVV/hacktoberfest2k22.git
cd hacktoberfest2k22
```

**4.** Add a reference(remote) to the original repository.
**4.** Add a reference (remote) to the original repository.

```
git remote add upstream https://github.com/GDSC-IETDAVV/hacktoberfest2k22.git
Expand All @@ -30,7 +30,7 @@ git remote add upstream https://github.com/GDSC-IETDAVV/hacktoberfest2k22.git
git remote -v
```

**6.** Always take a pull from the upstream repository to your main branch to keep it at par with the main project(updated repository).
**6.** Always take a pull from the upstream repository to your main branch to keep it at par with the main project (updated repository).

```
git pull upstream main
Expand All @@ -48,13 +48,13 @@ git checkout -b <your_branch_name>

<p align="center"><img width=35% src="https://media2.giphy.com/media/L1R1tvI9svkIWwpVYr/giphy.gif?cid=ecf05e47pzi2rpig0vc8pjusra8hiai1b91zgiywvbubu9vu&rid=giphy.gif"></p>

**9.** add your changes:heavy_check_mark: .
**9.** add your changes:heavy_check_mark:

```
git add .
```

**10.** Commit your changes .
**10.** Commit your changes

```
git commit -m "Relevant message"
Expand Down